interface MandatoryKeywordsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnPoolPropsMixin.MandatoryKeywordsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnPoolPropsMixin_MandatoryKeywordsProperty |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnPoolPropsMixin.MandatoryKeywordsProperty |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnPoolPropsMixin.MandatoryKeywordsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnPoolPropsMixin » 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 { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const mandatoryKeywordsProperty: smsvoice_mixins.CfnPoolPropsMixin.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
(optional)
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
(optional)
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