Module Values.DataShareAssociationSource

The association of a datashare from a producer account with a data consumer.

Sourcetype nonrec t = {
  1. consumerIdentifier : String_.t option;
    (*

    The name of the consumer accounts that have an association with a producer datashare.

    *)
  2. status : DataShareStatus.t option;
    (*

    The status of the datashare that is associated.

    *)
  3. consumerRegion : String_.t option;
    (*

    The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.

    *)
  4. createdDate : TStamp.t option;
    (*

    The creation date of the datashare that is associated.

    *)
  5. statusChangeDate : TStamp.t option;
    (*

    The status change data of the datashare that is associated.

    *)
  6. producerAllowedWrites : BooleanOptional.t option;
    (*

    Specifies whether write operations were allowed during data share authorization.

    *)
  7. consumerAcceptedWrites : BooleanOptional.t option;
    (*

    Specifies whether write operations were allowed during data share association.

    *)
}
Sourceval make : ?consumerIdentifier:??? -> ?status:??? -> ?consumerRegion:??? -> ?createdDate:??? -> ?statusChangeDate:??? -> ?producerAllowedWrites:??? -> ?consumerAcceptedWrites:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of String_.t | `Timestamp of TStamp.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