Interface CfnAnalysisTemplate.IAnalysisSourceProperty
The structure that defines the body of the analysis template.
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysisTemplate.IAnalysisSourceProperty
Syntax (vb)
Public Interface 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
Properties
| Artifacts | The artifacts of the analysis source. |
| Text | The query text. |
Properties
Artifacts
The artifacts of the analysis source.
object? Artifacts { get; }
Property Value
Remarks
Text
The query text.
string? Text { get; }