Interface CfnExtension.ParameterProperty

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

@Stability(Stable) public static interface CfnExtension.ParameterProperty extends software.amazon.jsii.JsiiSerializable
A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.

Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AWS AppConfig 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.appconfig.*;
 ParameterProperty parameterProperty = ParameterProperty.builder()
         .required(false)
         // the properties below are optional
         .description("description")
         .dynamic(false)
         .build();
 

See Also: