interface MandatoryKeywordsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnPhoneNumber.MandatoryKeywordsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnPhoneNumber_MandatoryKeywordsProperty |
Java | software.amazon.awscdk.services.smsvoice.CfnPhoneNumber.MandatoryKeywordsProperty |
Python | aws_cdk.aws_smsvoice.CfnPhoneNumber.MandatoryKeywordsProperty |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnPhoneNumber » MandatoryKeywordsProperty |
The keywords HELP and STOP are mandatory keywords that each phone number must have.
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.CfnPhoneNumber.MandatoryKeywordsProperty = {
help: {
message: 'message',
},
stop: {
message: 'message',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| help | IResolvable | Mandatory | Specifies the HELP keyword that customers use to obtain customer support for this phone number. |
| stop | IResolvable | Mandatory | Specifies the STOP keyword that customers use to opt out of receiving messages from this phone number. |
help
Type:
IResolvable | Mandatory
Specifies the HELP keyword that customers use to obtain customer support for this phone number.
For more information, see Keywords in the End User Messaging User Guide.
stop
Type:
IResolvable | Mandatory
Specifies the STOP keyword that customers use to opt out of receiving messages from this phone number.
For more information, see Required opt-out keywords in the End User Messaging User Guide.

.NET
Go
Java
Python
TypeScript