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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplatePropsMixin.AnalysisSourceMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifacts
The artifacts of the analysis source metadata.Returns union: either
IResolvableorCfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactMetadataProperty- See Also:
-
builder
@Stability(Stable) static CfnAnalysisTemplatePropsMixin.AnalysisSourceMetadataProperty.Builder builder()
-