Module Values.CreateIdNamespaceInputSource

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;
    (*

    The name of the ID namespace.

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

    The description of the ID namespace.

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

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

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

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

    *)
  5. type_ : IdNamespaceType.t;
    (*

    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.

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

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

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?inputSourceConfig:??? -> ?idMappingWorkflowProperties:??? -> ?roleArn:??? -> ?tags:??? -> idNamespaceName:EntityName.t -> type_:IdNamespaceType.t -> unit -> 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 ]) 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