interface ActionConnectorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.ActionConnectorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#ActionConnectorReference |
Java | software.amazon.awscdk.interfaces.quicksight.ActionConnectorReference |
Python | aws_cdk.interfaces.aws_quicksight.ActionConnectorReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » ActionConnectorReference |
A reference to a ActionConnector resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_quicksight } from 'aws-cdk-lib/interfaces';
const actionConnectorReference: interfaces_quicksight.ActionConnectorReference = {
actionConnectorArn: 'actionConnectorArn',
actionConnectorId: 'actionConnectorId',
awsAccountId: 'awsAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The ARN of the ActionConnector resource. |
| action | string | The ActionConnectorId of the ActionConnector resource. |
| aws | string | The AwsAccountId of the ActionConnector resource. |
actionConnectorArn
Type:
string
The ARN of the ActionConnector resource.
actionConnectorId
Type:
string
The ActionConnectorId of the ActionConnector resource.
awsAccountId
Type:
string
The AwsAccountId of the ActionConnector resource.

.NET
Go
Java
Python
TypeScript