Interface CfnPool.MandatoryKeywordsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPool.MandatoryKeywordsProperty.Jsii$Proxy
Enclosing class:
CfnPool

@Stability(Stable) public static interface CfnPool.MandatoryKeywordsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.smsvoice.*;
 MandatoryKeywordsProperty mandatoryKeywordsProperty = MandatoryKeywordsProperty.builder()
         .help(MandatoryKeywordProperty.builder()
                 .message("message")
                 .build())
         .stop(MandatoryKeywordProperty.builder()
                 .message("message")
                 .build())
         .build();
 

See Also: