Class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty
The analysis template artifacts.
Inherited Members
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty : CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty Implements CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
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 analysisTemplateArtifactsProperty = new AnalysisTemplateArtifactsProperty {
EntryPoint = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
},
RoleArn = "roleArn",
// the properties below are optional
AdditionalArtifacts = new [] { new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
} }
};
Synopsis
Constructors
| AnalysisTemplateArtifactsProperty() | The analysis template artifacts. |
Properties
| AdditionalArtifacts | Additional artifacts for the analysis template. |
| EntryPoint | The entry point for the analysis template artifacts. |
| RoleArn | The role ARN for the analysis template artifacts. |
Constructors
AnalysisTemplateArtifactsProperty()
The analysis template artifacts.
public AnalysisTemplateArtifactsProperty()
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 analysisTemplateArtifactsProperty = new AnalysisTemplateArtifactsProperty {
EntryPoint = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
},
RoleArn = "roleArn",
// the properties below are optional
AdditionalArtifacts = new [] { new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
} }
};
Properties
AdditionalArtifacts
Additional artifacts for the analysis template.
public object? AdditionalArtifacts { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAnalysisTemplate.IAnalysisTemplateArtifactProperty)[]
EntryPoint
The entry point for the analysis template artifacts.
public object EntryPoint { get; set; }
Property Value
Remarks
RoleArn
The role ARN for the analysis template artifacts.
public string RoleArn { get; set; }