Class: Aws::Deadline::Types::AwsCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::AwsCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-deadline/types.rb
Overview
The Identity and Access Management credentials.
Constant Summary collapse
- SENSITIVE =
[:access_key_id, :secret_access_key, :session_token]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The IAM access key ID.
-
#expiration ⇒ Time
The expiration date and time of the IAM credentials.
-
#secret_access_key ⇒ String
The IAM secret access key.
-
#session_token ⇒ String
The IAM session token.
Instance Attribute Details
#access_key_id ⇒ String
The IAM access key ID.
641 642 643 644 645 646 647 648 |
# File 'lib/aws-sdk-deadline/types.rb', line 641 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |
#expiration ⇒ Time
The expiration date and time of the IAM credentials.
641 642 643 644 645 646 647 648 |
# File 'lib/aws-sdk-deadline/types.rb', line 641 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |
#secret_access_key ⇒ String
The IAM secret access key.
641 642 643 644 645 646 647 648 |
# File 'lib/aws-sdk-deadline/types.rb', line 641 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |
#session_token ⇒ String
The IAM session token
641 642 643 644 645 646 647 648 |
# File 'lib/aws-sdk-deadline/types.rb', line 641 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:access_key_id, :secret_access_key, :session_token] include Aws::Structure end |