Module Values.IdNamespaceAssociationSource

Provides information to create the ID namespace association.

Sourcetype nonrec t = {
  1. id : IdNamespaceAssociationIdentifier.t option;
    (*

    The unique identifier for this ID namespace association.

    *)
  2. arn : IdNamespaceAssociationArn.t option;
    (*

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

    *)
  3. membershipId : UUID.t option;
    (*

    The unique identifier of the membership resource for this ID namespace association.

    *)
  4. membershipArn : MembershipArn.t option;
    (*

    The Amazon Resource Name (ARN) of the membership resource for this ID namespace association.

    *)
  5. collaborationId : UUID.t option;
    (*

    The unique identifier of the collaboration that contains this ID namespace association.

    *)
  6. collaborationArn : CollaborationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the collaboration that contains this ID namespace association.

    *)
  7. name : GenericResourceName.t option;
    (*

    The name of this ID namespace association.

    *)
  8. description : ResourceDescription.t option;
    (*

    The description of the ID namespace association.

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

    The time at which the ID namespace association was created.

    *)
  10. updateTime : Timestamp.t option;
    (*

    The most recent time at which the ID namespace association was updated.

    *)
  11. inputReferenceConfig : IdNamespaceAssociationInputReferenceConfig.t option;
    (*

    The input reference configuration for the ID namespace association.

    *)
  12. inputReferenceProperties : IdNamespaceAssociationInputReferenceProperties.t option;
    (*

    The input reference properties for the ID namespace association.

    *)
  13. idMappingConfig : IdMappingConfig.t option;
    (*

    The configuration settings for the ID mapping table.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?name:??? -> ?description:??? -> ?createTime:??? -> ?updateTime:??? -> ?inputReferenceConfig:??? -> ?inputReferenceProperties:??? -> ?idMappingConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IdNamespaceAssociationIdentifier.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of 'a list ] list | `String of IdNamespaceAssociationInputReferenceArn.t ]) list | `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