interface APIKeyConnectionMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnActionConnector.APIKeyConnectionMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnActionConnector_APIKeyConnectionMetadataProperty |
Java | software.amazon.awscdk.services.quicksight.CfnActionConnector.APIKeyConnectionMetadataProperty |
Python | aws_cdk.aws_quicksight.CfnActionConnector.APIKeyConnectionMetadataProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnActionConnector » APIKeyConnectionMetadataProperty |
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 aPIKeyConnectionMetadataProperty: quicksight.CfnActionConnector.APIKeyConnectionMetadataProperty = {
apiKey: 'apiKey',
baseEndpoint: 'baseEndpoint',
// the properties below are optional
email: 'email',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | |
| base | string | |
| email? | string |
apiKey
Type:
string
baseEndpoint
Type:
string
email?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript