Module Values_1.HierarchyGroupSource

Contains information about a hierarchy group.

Sourcetype nonrec t = {
  1. id : Values_0.HierarchyGroupId.t option;
    (*

    The identifier of the hierarchy group.

    *)
  2. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the hierarchy group.

    *)
  3. name : Values_0.HierarchyGroupName.t option;
    (*

    The name of the hierarchy group.

    *)
  4. levelId : HierarchyLevelId.t option;
    (*

    The identifier of the level in the hierarchy group.

    *)
  5. hierarchyPath : HierarchyPath.t option;
    (*

    Information about the levels in the hierarchy group.

    *)
  6. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
  7. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when this resource was last modified.

    *)
  8. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?levelId:??? -> ?hierarchyPath:??? -> ?tags:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.HierarchyGroupId.t | `Structure of (string * [> `Structure of (string * [> `String of Values_0.HierarchyGroupId.t | `Timestamp of Values_0.Timestamp.t ]) list ]) list | `Timestamp of Values_0.Timestamp.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