Module Values.ProfileSummarySource

Summary of a profile.

Sourcetype nonrec t = {
  1. profileArn : ProfileArn.t option;
    (*

    The profile ARN.

    *)
  2. profileVersion : ProfileVersion.t option;
    (*

    The profile version.

    *)
  3. profileName : ProfileName.t option;
    (*

    The profile name.

    *)
  4. profileDescription : ProfileDescription.t option;
    (*

    The profile description.

    *)
  5. owner : AwsAccountId.t option;
  6. createdAt : Timestamp.t option;
  7. updatedAt : Timestamp.t option;
}
Sourceval make : ?profileArn:??? -> ?profileVersion:??? -> ?profileName:??? -> ?profileDescription:??? -> ?owner:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProfileArn.t | `Timestamp of 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