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 Working with AWS AppConfig extensions 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") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExtension.ParameterProperty
static final class
An implementation forCfnExtension.ParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRequired
A parameter value must be specified in the extension association. -
getDescription
Information about the parameter. -
builder
-