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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.KeyPairCredentialsPropertystatic final classAn implementation forCfnDataSource.KeyPairCredentialsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyPairUsername
Username.- See Also:
-
getPrivateKey
PrivateKey.- See Also:
-
getPrivateKeyPassphrase
PrivateKeyPassphrase.- See Also:
-
builder
-