interface KeyPairCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSourcePropsMixin_KeyPairCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSourcePropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const keyPairCredentialsProperty: quicksight_mixins.CfnDataSourcePropsMixin.KeyPairCredentialsProperty = {
keyPairUsername: 'keyPairUsername',
privateKey: 'privateKey',
privateKeyPassphrase: 'privateKeyPassphrase',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Username. |
| private | string | PrivateKey. |
| private | string | PrivateKeyPassphrase. |
keyPairUsername?
Type:
string
(optional)
Username.
privateKey?
Type:
string
(optional)
PrivateKey.
privateKeyPassphrase?
Type:
string
(optional)
PrivateKeyPassphrase.

.NET
Go
Java
Python
TypeScript