interface CustomActionAttachmentCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Chatbot.Mixins.CfnCustomActionPropsMixin.CustomActionAttachmentCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awschatbot/mixins#CfnCustomActionPropsMixin_CustomActionAttachmentCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.chatbot.mixins.CfnCustomActionPropsMixin.CustomActionAttachmentCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_chatbot.mixins.CfnCustomActionPropsMixin.CustomActionAttachmentCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_chatbot » mixins » CfnCustomActionPropsMixin » CustomActionAttachmentCriteriaProperty |
AWS Chatbot is now . Learn more > >
Typeattribute values remain unchanged.
A criteria for when a button should be shown based on values in the notification.
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 customActionAttachmentCriteriaProperty: chatbot_mixins.CfnCustomActionPropsMixin.CustomActionAttachmentCriteriaProperty = {
operator: 'operator',
value: 'value',
variableName: 'variableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| operator? | string | The operation to perform on the named variable. |
| value? | string | A value that is compared with the actual value of the variable based on the behavior of the operator. |
| variable | string | The name of the variable to operate on. |
operator?
Type:
string
(optional)
The operation to perform on the named variable.
value?
Type:
string
(optional)
A value that is compared with the actual value of the variable based on the behavior of the operator.
variableName?
Type:
string
(optional)
The name of the variable to operate on.

.NET
Go
Java
Python
TypeScript