interface AnalysisSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnAnalysisTemplate.AnalysisSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnAnalysisTemplate_AnalysisSourceProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty |
Python | aws_cdk.aws_cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnAnalysisTemplate » 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-lib';
const analysisSourceProperty: cleanrooms.CfnAnalysisTemplate.AnalysisSourceProperty = {
artifacts: {
entryPoint: {
location: {
bucket: 'bucket',
key: 'key',
},
},
roleArn: 'roleArn',
// the properties below are optional
additionalArtifacts: [{
location: {
bucket: 'bucket',
key: 'key',
},
}],
},
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