Class: Aws::S3::Types::SessionCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::SessionCredentials
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
The established temporary security credentials of the session.
<note markdown=“1”> **Directory buckets** - These session credentials are only supported for the authentication and authorization of Zonal endpoint API operations on directory buckets.
</note>
Constant Summary collapse
- SENSITIVE =
[:secret_access_key, :session_token]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
A unique identifier that’s associated with a secret access key.
-
#expiration ⇒ Time
Temporary security credentials expire after a specified interval.
-
#secret_access_key ⇒ String
A key that’s used with the access key ID to cryptographically sign programmatic Amazon Web Services requests.
-
#session_token ⇒ String
A part of the temporary security credentials.
Instance Attribute Details
#access_key_id ⇒ String
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.
18979 18980 18981 18982 18983 18984 18985 18986 |
# File 'lib/aws-sdk-s3/types.rb', line 18979 class SessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |
#expiration ⇒ Time
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.
18979 18980 18981 18982 18983 18984 18985 18986 |
# File 'lib/aws-sdk-s3/types.rb', line 18979 class SessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |
#secret_access_key ⇒ String
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.
18979 18980 18981 18982 18983 18984 18985 18986 |
# File 'lib/aws-sdk-s3/types.rb', line 18979 class SessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |
#session_token ⇒ String
A part of the temporary security credentials. The session token is used to validate the temporary security credentials.
18979 18980 18981 18982 18983 18984 18985 18986 |
# File 'lib/aws-sdk-s3/types.rb', line 18979 class SessionCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |