interface AnalysisSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnAnalysisTemplatePropsMixin.AnalysisSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnAnalysisTemplatePropsMixin_AnalysisSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.AnalysisSourceProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.AnalysisSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnAnalysisTemplatePropsMixin » AnalysisSourceProperty |
The structure that defines the body of the analysis template.
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 analysisSourceProperty: cleanrooms_mixins.CfnAnalysisTemplatePropsMixin.AnalysisSourceProperty = {
artifacts: {
additionalArtifacts: [{
location: {
bucket: 'bucket',
key: 'key',
},
}],
entryPoint: {
location: {
bucket: 'bucket',
key: 'key',
},
},
roleArn: 'roleArn',
},
text: 'text',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifacts? | IResolvable | Analysis | The artifacts of the analysis source. |
| text? | string | The query text. |
artifacts?
Type:
IResolvable | Analysis
(optional)
The artifacts of the analysis source.
text?
Type:
string
(optional)
The query text.

.NET
Go
Java
Python
TypeScript