Module Values.ProfileSummarySource

Summary information about a Route 53 Profile.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Profile.

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

    ID of the Profile.

    *)
  3. name : Name.t option;
    (*

    Name of the Profile.

    *)
  4. shareStatus : ShareStatus.t option;
    (*

    Share status of the Profile.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?shareStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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