interface OptionalKeywordProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnPool.OptionalKeywordProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnPool_OptionalKeywordProperty |
Java | software.amazon.awscdk.services.smsvoice.CfnPool.OptionalKeywordProperty |
Python | aws_cdk.aws_smsvoice.CfnPool.OptionalKeywordProperty |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnPool » OptionalKeywordProperty |
The pool's OptionalKeyword configuration.
For more information, see Keywords in the End User Messaging User Guide.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from 'aws-cdk-lib';
const optionalKeywordProperty: smsvoice.CfnPool.OptionalKeywordProperty = {
action: 'action',
keyword: 'keyword',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The action to perform when the keyword is used. |
| keyword | string | The new keyword to add. |
| message | string | The message associated with the keyword. |
action
Type:
string
The action to perform when the keyword is used.
keyword
Type:
string
The new keyword to add.
message
Type:
string
The message associated with the keyword.

.NET
Go
Java
Python
TypeScript