Class: Aws::FinSpaceData::Types::AwsCredentials

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#access_key_idString

The unique identifier for the security credentials.

Returns:

  • (String)


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

#expirationInteger

The Epoch time when the current credentials expire.

Returns:

  • (Integer)


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_keyString

The secret access key that can be used to sign requests.

Returns:

  • (String)


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_tokenString

The token that users must pass to use the credentials.

Returns:

  • (String)


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