Interface CfnAnalysisTemplatePropsMixin.AnalysisSourceMetadataProperty

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

@Stability(Stable) public static interface CfnAnalysisTemplatePropsMixin.AnalysisSourceMetadataProperty extends software.amazon.jsii.JsiiSerializable
The analysis source metadata.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
 AnalysisSourceMetadataProperty analysisSourceMetadataProperty = AnalysisSourceMetadataProperty.builder()
         .artifacts(AnalysisTemplateArtifactMetadataProperty.builder()
                 .additionalArtifactHashes(List.of(HashProperty.builder()
                         .sha256("sha256")
                         .build()))
                 .entryPointHash(HashProperty.builder()
                         .sha256("sha256")
                         .build())
                 .build())
         .build();
 

See Also: