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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeployment.DynamicExtensionParametersProperty
static final class
An implementation forCfnDeployment.DynamicExtensionParametersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtensionReference
The ARN or ID of the extension for which you are inserting a dynamic parameter.- See Also:
-
getParameterName
The parameter name.- See Also:
-
getParameterValue
The parameter value.- See Also:
-
builder
-