Module Values.AssociateDataShareConsumerMessageSource

From a datashare consumer account, associates a datashare with the account (AssociateEntireAccount) or the specified namespace (ConsumerArn). If you make this association, the consumer can consume the datashare.

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

    The Amazon Resource Name (ARN) of the datashare that the consumer is to use.

    *)
  2. associateEntireAccount : BooleanOptional.t option;
    (*

    A value that specifies whether the datashare is associated with the entire account.

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

    The Amazon Resource Name (ARN) of the consumer namespace associated with the datashare.

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

    From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.

    *)
  5. allowWrites : BooleanOptional.t option;
    (*

    If set to true, allows write operations for a datashare.

    *)
}
Sourceval context_ : string
Sourceval make : ?associateEntireAccount:??? -> ?consumerArn:??? -> ?consumerRegion:??? -> ?allowWrites:??? -> dataShareArn:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `String of String_.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