Module Values.GroupIdentifierSource

The unique identifiers for a resource group.

Sourcetype nonrec t = {
  1. groupName : GroupName.t option;
    (*

    The name of the resource group.

    *)
  2. groupArn : GroupArn.t option;
    (*

    The Amazon resource name (ARN) of the resource group.

    *)
  3. description : Description.t option;
    (*

    The description of the application group.

    *)
  4. criticality : Criticality.t option;
    (*

    The critical rank of the application group on a scale of 1 to 10, with a rank of 1 being the most critical, and a rank of 10 being least critical.

    *)
  5. owner : Owner.t option;
    (*

    A name, email address or other identifier for the person or group who is considered as the owner of this group within your organization.

    *)
  6. displayName : DisplayName.t option;
    (*

    The name of the application group, which you can change at any time.

    *)
}
Sourceval make : ?groupName:??? -> ?groupArn:??? -> ?description:??? -> ?criticality:??? -> ?owner:??? -> ?displayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Criticality.t | `String of GroupName.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