Interface CfnAnalysisTemplate.AnalysisParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysisTemplate.AnalysisParameterProperty.Jsii$Proxy
Enclosing class:
CfnAnalysisTemplate

@Stability(Stable) public static interface CfnAnalysisTemplate.AnalysisParameterProperty extends software.amazon.jsii.JsiiSerializable
Optional.

The member who can query can provide this placeholder for a literal data value in an analysis template.

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.cleanrooms.*;
 AnalysisParameterProperty analysisParameterProperty = AnalysisParameterProperty.builder()
         .name("name")
         .type("type")
         // the properties below are optional
         .defaultValue("defaultValue")
         .build();
 

See Also: