Module Values.CollaborationConfiguredAudienceModelAssociationSource

The configured audience model association within a collaboration.

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

    The identifier of the configured audience model association.

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

    The Amazon Resource Name (ARN) of the configured audience model association.

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

    A unique identifier for the collaboration that the configured audience model associations belong to. Accepts collaboration ID.

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

    The unique ARN for the configured audience model's associated collaboration.

    *)
  5. configuredAudienceModelArn : ConfiguredAudienceModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the configure audience model.

    *)
  6. name : ConfiguredAudienceModelAssociationName.t option;
    (*

    The name of the configured audience model association.

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

    The description of the configured audience model association.

    *)
  8. creatorAccountId : AccountId.t option;
    (*

    The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.

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

    The time at which the configured audience model association was created.

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

    The most recent time at which the configured audience model association was updated.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?configuredAudienceModelArn:??? -> ?name:??? -> ?description:??? -> ?creatorAccountId:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConfiguredAudienceModelAssociationIdentifier.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