interface AnalysisTemplateArtifactsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnAnalysisTemplatePropsMixin_AnalysisTemplateArtifactsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const analysisTemplateArtifactsProperty: cleanrooms.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