Module Values.AuthorizeDataShareMessageSource

From a data producer account, authorizes the sharing of a datashare with one or more consumer accounts or managing entities. To authorize a datashare for a data consumer, the producer account must have the correct access permissions.

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

    The Amazon Resource Name (ARN) of the datashare namespace that producers are to authorize sharing for.

    *)
  2. consumerIdentifier : String_.t;
    (*

    The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?allowWrites:??? -> dataShareArn:String_.t -> consumerIdentifier: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