interface MandatoryKeywordsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnPool.MandatoryKeywordsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnPool_MandatoryKeywordsProperty |
Java | software.amazon.awscdk.services.smsvoice.CfnPool.MandatoryKeywordsProperty |
Python | aws_cdk.aws_smsvoice.CfnPool.MandatoryKeywordsProperty |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnPool » MandatoryKeywordsProperty |
The manadatory keywords, HELP and STOP to add to the pool.
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 mandatoryKeywordsProperty: smsvoice.CfnPool.MandatoryKeywordsProperty = {
help: {
message: 'message',
},
stop: {
message: 'message',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| help | IResolvable | Mandatory | Specifies the pool's HELP keyword. |
| stop | IResolvable | Mandatory | Specifies the pool's opt-out keyword. |
help
Type:
IResolvable | Mandatory
Specifies the pool's HELP keyword.
For more information, see Opt out list required keywords in the End User Messaging User Guide.
stop
Type:
IResolvable | Mandatory
Specifies the pool's opt-out keyword.
For more information, see Required opt-out keywords in the End User Messaging User Guide.

.NET
Go
Java
Python
TypeScript