Module Values.CreateShareRequestSource

Creates a cross-account shared resource. The resource owner makes an offer to share the resource with the principal subscriber (an AWS user with a different account than the resource owner). The following resources support cross-account sharing: HealthOmics variant stores HealthOmics annotation stores Private workflows

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

    The ARN of the resource to be shared.

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

    The principal subscriber is the account being offered shared access to the resource.

    *)
  3. shareName : ShareName.t option;
    (*

    A name that the owner defines for the share.

    *)
}
Sourceval context_ : string
Sourceval make : ?shareName:??? -> resourceArn:String_.t -> principalSubscriber:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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