Module Values.CreateGroupProfileInputSource

Creates a group profile in Amazon DataZone.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon DataZone domain in which the group profile is created.

    *)
  2. groupIdentifier : GroupIdentifier.t option;
    (*

    The identifier of the group for which the group profile is created.

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

    The ARN of the IAM role that will be associated with the group profile. This role defines the permissions that group members will assume when accessing Amazon DataZone resources.

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

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupIdentifier:??? -> ?rolePrincipalArn:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.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