Interface CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplate
@Stability(Stable)
public static interface CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty
extends software.amazon.jsii.JsiiSerializable
The analysis template artifact 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.services.cleanrooms.*;
AnalysisTemplateArtifactMetadataProperty analysisTemplateArtifactMetadataProperty = AnalysisTemplateArtifactMetadataProperty.builder()
.entryPointHash(HashProperty.builder()
.sha256("sha256")
.build())
// the properties below are optional
.additionalArtifactHashes(List.of(HashProperty.builder()
.sha256("sha256")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntryPointHash
The hash of the entry point for the analysis template artifact metadata.Returns union: either
IResolvableorCfnAnalysisTemplate.HashProperty- See Also:
-
getAdditionalArtifactHashes
Additional artifact hashes for the analysis template.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysisTemplate.HashProperty>- See Also:
-
builder
@Stability(Stable) static CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty.Builder builder()
-