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