Interface CfnDataSourcePropsMixin.KeyPairCredentialsProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.quicksight.*;
 KeyPairCredentialsProperty keyPairCredentialsProperty = KeyPairCredentialsProperty.builder()
         .keyPairUsername("keyPairUsername")
         .privateKey("privateKey")
         .privateKeyPassphrase("privateKeyPassphrase")
         .build();
 

See Also: