interface KeyPairCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSource.KeyPairCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSource_KeyPairCredentialsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSource.KeyPairCredentialsProperty |
Python | aws_cdk.aws_quicksight.CfnDataSource.KeyPairCredentialsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSource » KeyPairCredentialsProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const keyPairCredentialsProperty: quicksight.CfnDataSource.KeyPairCredentialsProperty = {
keyPairUsername: 'keyPairUsername',
privateKey: 'privateKey',
// the properties below are optional
privateKeyPassphrase: 'privateKeyPassphrase',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Username. |
| private | string | PrivateKey. |
| private | string | PrivateKeyPassphrase. |
keyPairUsername
Type:
string
Username.
privateKey
Type:
string
PrivateKey.
privateKeyPassphrase?
Type:
string
(optional)
PrivateKeyPassphrase.

.NET
Go
Java
Python
TypeScript