Class: Aws::FinSpaceData::Types::AwsCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::FinSpaceData::Types::AwsCredentials
- Defined in:
- gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb
Overview
The credentials required to access the external Dataview from the S3 location.
Constant Summary collapse
- SENSITIVE =
[:secret_access_key, :session_token]
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The unique identifier for the security credentials.
-
#expiration ⇒ Integer
The Epoch time when the current credentials expire.
-
#secret_access_key ⇒ String
The secret access key that can be used to sign requests.
-
#session_token ⇒ String
The token that users must pass to use the credentials.
Instance Attribute Details
#access_key_id ⇒ String
The unique identifier for the security credentials.
84 85 86 87 88 89 90 91 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 84 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |
#expiration ⇒ Integer
The Epoch time when the current credentials expire.
84 85 86 87 88 89 90 91 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 84 class AwsCredentials < 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
The secret access key that can be used to sign requests.
84 85 86 87 88 89 90 91 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 84 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |
#session_token ⇒ String
The token that users must pass to use the credentials.
84 85 86 87 88 89 90 91 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 84 class AwsCredentials < Struct.new( :access_key_id, :secret_access_key, :session_token, :expiration) SENSITIVE = [:secret_access_key, :session_token] include Aws::Structure end |