Class: Aws::QuickSight::Types::KeyPairCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

The combination of username, private key and passphrase that are used as credentials.

Constant Summary collapse

SENSITIVE =
[:private_key, :private_key_passphrase]

Instance Attribute Summary collapse

Instance Attribute Details

#key_pair_usernameString

Username

Returns:

  • (String)


23736
23737
23738
23739
23740
23741
23742
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 23736

class KeyPairCredentials < Struct.new(
  :key_pair_username,
  :private_key,
  :private_key_passphrase)
  SENSITIVE = [:private_key, :private_key_passphrase]
  include Aws::Structure
end

#private_keyString

PrivateKey

Returns:

  • (String)


23736
23737
23738
23739
23740
23741
23742
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 23736

class KeyPairCredentials < Struct.new(
  :key_pair_username,
  :private_key,
  :private_key_passphrase)
  SENSITIVE = [:private_key, :private_key_passphrase]
  include Aws::Structure
end

#private_key_passphraseString

PrivateKeyPassphrase

Returns:

  • (String)


23736
23737
23738
23739
23740
23741
23742
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 23736

class KeyPairCredentials < Struct.new(
  :key_pair_username,
  :private_key,
  :private_key_passphrase)
  SENSITIVE = [:private_key, :private_key_passphrase]
  include Aws::Structure
end