interface OptionalKeywordProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnPoolPropsMixin.OptionalKeywordProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnPoolPropsMixin_OptionalKeywordProperty |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnPoolPropsMixin.OptionalKeywordProperty |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnPoolPropsMixin.OptionalKeywordProperty |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnPoolPropsMixin » 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 { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const optionalKeywordProperty: smsvoice_mixins.CfnPoolPropsMixin.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
(optional)
The action to perform when the keyword is used.
keyword?
Type:
string
(optional)
The new keyword to add.
message?
Type:
string
(optional)
The message associated with the keyword.

.NET
Go
Java
Python
TypeScript