interface CustomActionDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Chatbot.Mixins.CfnCustomActionPropsMixin.CustomActionDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awschatbot/mixins#CfnCustomActionPropsMixin_CustomActionDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.chatbot.mixins.CfnCustomActionPropsMixin.CustomActionDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_chatbot.mixins.CfnCustomActionPropsMixin.CustomActionDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_chatbot » mixins » CfnCustomActionPropsMixin » CustomActionDefinitionProperty |
AWS Chatbot is now . Learn more > >
Typeattribute values remain unchanged.
The definition of the command to run when invoked as an alias or as an action button.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as chatbot_mixins } from '@aws-cdk/mixins-preview/aws-chatbot';
const customActionDefinitionProperty: chatbot_mixins.CfnCustomActionPropsMixin.CustomActionDefinitionProperty = {
commandText: 'commandText',
};
Properties
| Name | Type | Description |
|---|---|---|
| command | string | The command string to run which may include variables by prefixing with a dollar sign ($). |
commandText?
Type:
string
(optional)
The command string to run which may include variables by prefixing with a dollar sign ($).

.NET
Go
Java
Python
TypeScript