Module Values.RoleCredentialsSource

Provides information about the role credentials that are assigned to the user.

Sourcetype nonrec t = {
  1. accessKeyId : AccessKeyType.t option;
    (*

    The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.

    *)
  2. secretAccessKey : SecretAccessKeyType.t option;
    (*

    The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.

    *)
  3. sessionToken : SessionTokenType.t option;
    (*

    The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.

    *)
  4. expiration : ExpirationTimestampType.t option;
    (*

    The date on which temporary security credentials expire.

    *)
}
Sourceval make : ?accessKeyId:??? -> ?secretAccessKey:??? -> ?sessionToken:??? -> ?expiration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ExpirationTimestampType.t | `String of AccessKeyType.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