Class CfnAnalysisTemplate.AnalysisTemplateArtifactProperty
The analysis template artifact.
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.AnalysisTemplateArtifactProperty : CfnAnalysisTemplate.IAnalysisTemplateArtifactProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.AnalysisTemplateArtifactProperty Implements CfnAnalysisTemplate.IAnalysisTemplateArtifactProperty
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 analysisTemplateArtifactProperty = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
};
Synopsis
Constructors
AnalysisTemplateArtifactProperty() | The analysis template artifact. |
Properties
Location | The artifact location. |
Constructors
AnalysisTemplateArtifactProperty()
The analysis template artifact.
public AnalysisTemplateArtifactProperty()
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 analysisTemplateArtifactProperty = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
};
Properties
Location
The artifact location.
public object Location { get; set; }