Class: Aws::DataZone::Types::ConnectionCredentials

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

The credentials of a connection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_key_idString

The access key ID of a connection.

Returns:

  • (String)


1718
1719
1720
1721
1722
1723
1724
1725
# File 'lib/aws-sdk-datazone/types.rb', line 1718

class ConnectionCredentials < Struct.new(
  :access_key_id,
  :expiration,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end

#expirationTime

The expiration of the connection credentials.

Returns:

  • (Time)


1718
1719
1720
1721
1722
1723
1724
1725
# File 'lib/aws-sdk-datazone/types.rb', line 1718

class ConnectionCredentials < Struct.new(
  :access_key_id,
  :expiration,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end

#secret_access_keyString

The secret access key of a connection.

Returns:

  • (String)


1718
1719
1720
1721
1722
1723
1724
1725
# File 'lib/aws-sdk-datazone/types.rb', line 1718

class ConnectionCredentials < Struct.new(
  :access_key_id,
  :expiration,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end

#session_tokenString

The session token of a connection credentials.

Returns:

  • (String)


1718
1719
1720
1721
1722
1723
1724
1725
# File 'lib/aws-sdk-datazone/types.rb', line 1718

class ConnectionCredentials < Struct.new(
  :access_key_id,
  :expiration,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end