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