Interface CfnPhoneNumberPropsMixin.MandatoryKeywordsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPhoneNumberPropsMixin.MandatoryKeywordsProperty.Jsii$Proxy
- Enclosing class:
CfnPhoneNumberPropsMixin
@Stability(Stable)
public static interface CfnPhoneNumberPropsMixin.MandatoryKeywordsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.smsvoice.*;
MandatoryKeywordsProperty mandatoryKeywordsProperty = MandatoryKeywordsProperty.builder()
.help(MandatoryKeywordProperty.builder()
.message("message")
.build())
.stop(MandatoryKeywordProperty.builder()
.message("message")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPhoneNumberPropsMixin.MandatoryKeywordsPropertystatic final classAn implementation forCfnPhoneNumberPropsMixin.MandatoryKeywordsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHelp
Specifies theHELPkeyword that customers use to obtain customer support for this phone number.For more information, see Keywords in the End User Messaging User Guide.
Returns union: either
IResolvableorCfnPhoneNumberPropsMixin.MandatoryKeywordProperty- See Also:
-
getStop
Specifies theSTOPkeyword 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.
Returns union: either
IResolvableorCfnPhoneNumberPropsMixin.MandatoryKeywordProperty- See Also:
-
builder
-