Class: Aws::CloudWatchOmni::Types::AwsCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::AwsCredentials
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
A set of temporary AWS credentials.
Constant Summary collapse
- SENSITIVE =
[:access_key_id, :secret_access_key, :session_token]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The AWS access key ID.
-
#expiration ⇒ Time
The timestamp when the credentials expire.
-
#secret_access_key ⇒ String
The AWS secret access key.
-
#session_token ⇒ String
The AWS session token.
Instance Attribute Details
#access_key_id ⇒ String
The AWS access key ID.
661 662 663 664 665 666 667 668 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 661 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 timestamp when the credentials expire.
661 662 663 664 665 666 667 668 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 661 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 AWS secret access key.
661 662 663 664 665 666 667 668 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 661 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 AWS session token.
661 662 663 664 665 666 667 668 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 661 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 |