Interface CfnDeployment.DynamicExtensionParametersProperty

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

@Stability(Stable) public static interface CfnDeployment.DynamicExtensionParametersProperty extends software.amazon.jsii.JsiiSerializable
A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT actions.

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.*;
 DynamicExtensionParametersProperty dynamicExtensionParametersProperty = DynamicExtensionParametersProperty.builder()
         .extensionReference("extensionReference")
         .parameterName("parameterName")
         .parameterValue("parameterValue")
         .build();
 

See Also: