Module Values_0.RoleAliasDescriptionSource

Role alias description.

Sourcetype nonrec t = {
  1. roleAlias : RoleAlias.t option;
    (*

    The role alias.

    *)
  2. roleAliasArn : RoleAliasArn.t option;
    (*

    The ARN of the role alias.

    *)
  3. roleArn : RoleArn.t option;
    (*

    The role ARN.

    *)
  4. owner : AwsAccountId.t option;
    (*

    The role alias owner.

    *)
  5. credentialDurationSeconds : CredentialDurationSeconds.t option;
    (*

    The number of seconds for which the credential is valid.

    *)
  6. creationDate : DateType.t option;
    (*

    The UNIX timestamp of when the role alias was created.

    *)
  7. lastModifiedDate : DateType.t option;
    (*

    The UNIX timestamp of when the role alias was last modified.

    *)
}
Sourceval make : ?roleAlias:??? -> ?roleAliasArn:??? -> ?roleArn:??? -> ?owner:??? -> ?credentialDurationSeconds:??? -> ?creationDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of CredentialDurationSeconds.t | `String of RoleAlias.t | `Timestamp of DateType.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