Interface CfnAnalysisTemplateProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysisTemplateProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-21T06:34:04.450Z") @Stability(Stable) public interface CfnAnalysisTemplateProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAnalysisTemplate.

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.*;
 CfnAnalysisTemplateProps cfnAnalysisTemplateProps = CfnAnalysisTemplateProps.builder()
         .format("format")
         .membershipIdentifier("membershipIdentifier")
         .name("name")
         .source(AnalysisSourceProperty.builder()
                 .text("text")
                 .build())
         // the properties below are optional
         .analysisParameters(List.of(AnalysisParameterProperty.builder()
                 .name("name")
                 .type("type")
                 // the properties below are optional
                 .defaultValue("defaultValue")
                 .build()))
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: