Module Values.CreateIdNamespaceOutputSource

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it. Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

Sourcetype nonrec t = {
  1. idNamespaceName : EntityName.t option;
    (*

    The name of the ID namespace.

    *)
  2. idNamespaceArn : IdNamespaceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the ID namespace.

    *)
  3. description : Description.t option;
    (*

    The description of the ID namespace.

    *)
  4. inputSourceConfig : IdNamespaceInputSourceConfig.t option;
    (*

    A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

    *)
  5. idMappingWorkflowProperties : IdNamespaceIdMappingWorkflowPropertiesList.t option;
    (*

    Determines the properties of IdMappingWorkflow where this IdNamespace can be used as a Source or a Target.

    *)
  6. type_ : IdNamespaceType.t option;
    (*

    The type of ID namespace. There are two types: SOURCE and TARGET. The SOURCE contains configurations for sourceId data that will be processed in an ID mapping workflow. The TARGET contains a configuration of targetId to which all sourceIds will resolve to.

    *)
  7. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in inputSourceConfig on your behalf as part of the workflow run.

    *)
  8. createdAt : Timestamp.t option;
    (*

    The timestamp of when the ID namespace was created.

    *)
  9. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the ID namespace was last updated.

    *)
  10. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `ExceedsLimitException of ExceedsLimitException.t
  4. | `InternalServerException of InternalServerException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?idNamespaceName:??? -> ?idNamespaceArn:??? -> ?description:??? -> ?inputSourceConfig:??? -> ?idMappingWorkflowProperties:??? -> ?type_:??? -> ?roleArn:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `ExceedsLimitException of ExceedsLimitException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `ExceedsLimitException of ExceedsLimitException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of InputSourceARN.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `List of [> `String of AttributeName.t ] list | `String of RuleRuleNameString.t ]) list ] list | `String of ProviderServiceArn.t | `Structure of 'a list ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of EntityName.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t