Module Values.GroupProfileSummarySource

The details of a group profile.

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

    The ID of the Amazon DataZone domain of a group profile.

    *)
  2. id : GroupProfileId.t option;
    (*

    The ID of a group profile.

    *)
  3. status : GroupProfileStatus.t option;
    (*

    The status of a group profile.

    *)
  4. groupName : GroupProfileName.t option;
    (*

    The group name of a group profile.

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

    The ARN of the IAM role principal. This role is associated with the group profile.

    *)
  6. rolePrincipalId : String_.t option;
    (*

    The unique identifier of the IAM role principal. This principal is associated with the group profile.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?status:??? -> ?groupName:??? -> ?rolePrincipalArn:??? -> ?rolePrincipalId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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