interface CustomActionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chatbot.CustomActionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschatbot#CustomActionReference |
Java | software.amazon.awscdk.services.chatbot.CustomActionReference |
Python | aws_cdk.aws_chatbot.CustomActionReference |
TypeScript | aws-cdk-lib » aws_chatbot » CustomActionReference |
A reference to a CustomAction resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_chatbot as chatbot } from 'aws-cdk-lib';
const customActionReference: chatbot.CustomActionReference = {
customActionArn: 'customActionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The CustomActionArn of the CustomAction resource. |
customActionArn
Type:
string
The CustomActionArn of the CustomAction resource.

.NET
Go
Java
Python
TypeScript