Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-artifacts

Type union: either IResolvable or CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty

Text

The query text.

string? Text { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-text

Back to top Generated by DocFX