Module Values.SessionCredentialsSource

The established temporary security credentials of the session. Directory buckets - These session credentials are only supported for the authentication and authorization of Zonal endpoint API operations on directory buckets.

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

    A unique identifier that's associated with a secret access key. The access key ID and the secret access key are used together to sign programmatic Amazon Web Services requests cryptographically.

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

    A key that's used with the access key ID to cryptographically sign programmatic Amazon Web Services requests. Signing a request identifies the sender and prevents the request from being altered.

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

    A part of the temporary security credentials. The session token is used to validate the temporary security credentials.

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

    Temporary security credentials expire after a specified interval. After temporary credentials expire, any calls that you make with those credentials will fail. So you must generate a new set of temporary credentials. Temporary credentials cannot be extended or refreshed beyond the original specified interval.

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