interface KeyPairCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_KeyPairCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.KeyPairCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const keyPairCredentialsProperty: quicksight.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