Class CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty
The analysis template artifact metadata.
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty : CfnAnalysisTemplate.IAnalysisTemplateArtifactMetadataProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty Implements CfnAnalysisTemplate.IAnalysisTemplateArtifactMetadataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisTemplateArtifactMetadataProperty = new AnalysisTemplateArtifactMetadataProperty {
EntryPointHash = new HashProperty {
Sha256 = "sha256"
},
// the properties below are optional
AdditionalArtifactHashes = new [] { new HashProperty {
Sha256 = "sha256"
} }
};
Synopsis
Constructors
AnalysisTemplateArtifactMetadataProperty() | The analysis template artifact metadata. |
Properties
AdditionalArtifactHashes | Additional artifact hashes for the analysis template. |
EntryPointHash | The hash of the entry point for the analysis template artifact metadata. |
Constructors
AnalysisTemplateArtifactMetadataProperty()
The analysis template artifact metadata.
public AnalysisTemplateArtifactMetadataProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisTemplateArtifactMetadataProperty = new AnalysisTemplateArtifactMetadataProperty {
EntryPointHash = new HashProperty {
Sha256 = "sha256"
},
// the properties below are optional
AdditionalArtifactHashes = new [] { new HashProperty {
Sha256 = "sha256"
} }
};
Properties
AdditionalArtifactHashes
Additional artifact hashes for the analysis template.
public object? AdditionalArtifactHashes { get; set; }
Property Value
Remarks
EntryPointHash
The hash of the entry point for the analysis template artifact metadata.
public object EntryPointHash { get; set; }