Class: Aws::QuickSight::Types::KeyPairCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::KeyPairCredentials
- Includes:
- Structure
- Defined in:
- 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
-
#key_pair_username ⇒ String
Username.
-
#private_key ⇒ String
PrivateKey.
-
#private_key_passphrase ⇒ String
PrivateKeyPassphrase.
Instance Attribute Details
#key_pair_username ⇒ String
Username
29069 29070 29071 29072 29073 29074 29075 |
# File 'lib/aws-sdk-quicksight/types.rb', line 29069 class KeyPairCredentials < Struct.new( :key_pair_username, :private_key, :private_key_passphrase) SENSITIVE = [:private_key, :private_key_passphrase] include Aws::Structure end |
#private_key ⇒ String
PrivateKey
29069 29070 29071 29072 29073 29074 29075 |
# File 'lib/aws-sdk-quicksight/types.rb', line 29069 class KeyPairCredentials < Struct.new( :key_pair_username, :private_key, :private_key_passphrase) SENSITIVE = [:private_key, :private_key_passphrase] include Aws::Structure end |
#private_key_passphrase ⇒ String
PrivateKeyPassphrase
29069 29070 29071 29072 29073 29074 29075 |
# File 'lib/aws-sdk-quicksight/types.rb', line 29069 class KeyPairCredentials < Struct.new( :key_pair_username, :private_key, :private_key_passphrase) SENSITIVE = [:private_key, :private_key_passphrase] include Aws::Structure end |