Interface CfnDataSource.KeyPairCredentialsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.KeyPairCredentialsProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.KeyPairCredentialsProperty extends software.amazon.jsii.JsiiSerializable
The combination of username, private key and passphrase that are used as credentials.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 KeyPairCredentialsProperty keyPairCredentialsProperty = KeyPairCredentialsProperty.builder()
         .keyPairUsername("keyPairUsername")
         .privateKey("privateKey")
         // the properties below are optional
         .privateKeyPassphrase("privateKeyPassphrase")
         .build();
 

See Also: