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();
 

See Also: