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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExtension.ParameterProperty
static final class
An implementation forCfnExtension.ParameterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Information about the parameter.default Object
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.A parameter value must be specified in the extension association.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRequired
A parameter value must be specified in the extension association.- See Also:
-
getDescription
Information about the parameter.- See Also:
-
getDynamic
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.Dynamic parameters can't be marked
Required
.- See Also:
-
builder
-