interface InvokedByProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnAppInstanceBotPropsMixin.InvokedByProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnAppInstanceBotPropsMixin_InvokedByProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnAppInstanceBotPropsMixin.InvokedByProperty |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceBotPropsMixin.InvokedByProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnAppInstanceBotPropsMixin » InvokedByProperty |
Specifies the type of message that triggers a bot.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_chime as chime } from '@aws-cdk/cfn-property-mixins';
const invokedByProperty: chime.CfnAppInstanceBotPropsMixin.InvokedByProperty = {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
};
Properties
| Name | Type | Description |
|---|---|---|
| standard | string | Sets standard messages as the bot trigger. |
| targeted | string | Sets targeted messages as the bot trigger. |
standardMessages?
Type:
string
(optional)
Sets standard messages as the bot trigger.
targetedMessages?
Type:
string
(optional)
Sets targeted messages as the bot trigger.

.NET
Go
Java
Python
TypeScript