interface InvokedByProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceBot.InvokedByProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceBot_InvokedByProperty |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceBot.InvokedByProperty |
Python | aws_cdk.aws_chime.CfnAppInstanceBot.InvokedByProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceBot » 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-lib';
const invokedByProperty: chime.CfnAppInstanceBot.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
Sets standard messages as the bot trigger.
targetedMessages
Type:
string
Sets targeted messages as the bot trigger.

.NET
Go
Java
Python
TypeScript