Interface CfnConformancePack.ConformancePackInputParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConformancePack.ConformancePackInputParameterProperty.Jsii$Proxy
- Enclosing class:
CfnConformancePack
@Stability(Stable)
public static interface CfnConformancePack.ConformancePackInputParameterProperty
extends software.amazon.jsii.JsiiSerializable
Input parameters in the form of key-value pairs for the conformance pack, both of which you define.
Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.
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.config.*; ConformancePackInputParameterProperty conformancePackInputParameterProperty = ConformancePackInputParameterProperty.builder() .parameterName("parameterName") .parameterValue("parameterValue") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConformancePack.ConformancePackInputParameterProperty
static final class
An implementation forCfnConformancePack.ConformancePackInputParameterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
One part of a key-value pair.Another part of the key-value pair.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
One part of a key-value pair. -
getParameterValue
Another part of the key-value pair. -
builder
@Stability(Stable) static CfnConformancePack.ConformancePackInputParameterProperty.Builder builder()
-