Class: Aws::Deadline::Types::AwsCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/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

Instance Attribute Details

#access_key_idString

The IAM access key ID.

Returns:

  • (String)


592
593
594
595
596
597
598
599
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 592

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

#expirationTime

The expiration date and time of the IAM credentials.

Returns:

  • (Time)


592
593
594
595
596
597
598
599
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 592

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

#secret_access_keyString

The IAM secret access key.

Returns:

  • (String)


592
593
594
595
596
597
598
599
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 592

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

#session_tokenString

The IAM session token

Returns:

  • (String)


592
593
594
595
596
597
598
599
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 592

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