interface AnalysisTemplateArtifactsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnAnalysisTemplatePropsMixin_AnalysisTemplateArtifactsProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnAnalysisTemplatePropsMixin » AnalysisTemplateArtifactsProperty |
The analysis template artifacts.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const analysisTemplateArtifactsProperty: cleanrooms_mixins.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty = {
additionalArtifacts: [{
location: {
bucket: 'bucket',
key: 'key',
},
}],
entryPoint: {
location: {
bucket: 'bucket',
key: 'key',
},
},
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | (IResolvable | Analysis)[] | Additional artifacts for the analysis template. |
| entry | IResolvable | Analysis | The entry point for the analysis template artifacts. |
| role | string | The role ARN for the analysis template artifacts. |
additionalArtifacts?
Type:
IResolvable | (IResolvable | Analysis)[]
(optional)
Additional artifacts for the analysis template.
entryPoint?
Type:
IResolvable | Analysis
(optional)
The entry point for the analysis template artifacts.
roleArn?
Type:
string
(optional)
The role ARN for the analysis template artifacts.

.NET
Go
Java
Python
TypeScript