Class CfnAnalysisTemplate.AnalysisSourceProperty
The structure that defines the body of the analysis template.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.AnalysisSourceProperty : CfnAnalysisTemplate.IAnalysisSourceProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.AnalysisSourceProperty Implements CfnAnalysisTemplate.IAnalysisSourceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisSourceProperty = new AnalysisSourceProperty {
Artifacts = new AnalysisTemplateArtifactsProperty {
EntryPoint = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
},
RoleArn = "roleArn",
// the properties below are optional
AdditionalArtifacts = new [] { new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
} }
},
Text = "text"
};
Synopsis
Constructors
AnalysisSourceProperty() | The structure that defines the body of the analysis template. |
Properties
Artifacts | The artifacts of the analysis source. |
Text | The query text. |
Constructors
AnalysisSourceProperty()
The structure that defines the body of the analysis template.
public AnalysisSourceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisSourceProperty = new AnalysisSourceProperty {
Artifacts = new AnalysisTemplateArtifactsProperty {
EntryPoint = new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
},
RoleArn = "roleArn",
// the properties below are optional
AdditionalArtifacts = new [] { new AnalysisTemplateArtifactProperty {
Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key"
}
} }
},
Text = "text"
};
Properties
Artifacts
The artifacts of the analysis source.
public object? Artifacts { get; set; }
Property Value
Remarks
Text
The query text.
public string? Text { get; set; }