Show / Hide Table of Contents

Class CfnAnalysisTemplate.AnalysisSourceProperty

The structure that defines the body of the analysis template.

Inheritance
object
CfnAnalysisTemplate.AnalysisSourceProperty
Implements
CfnAnalysisTemplate.IAnalysisSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

Artifacts

The artifacts of the analysis source.

public object? Artifacts { get; set; }
Property Value

object

Remarks

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

Text

The query text.

public string? Text { get; set; }
Property Value

string

Remarks

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

Implements

CfnAnalysisTemplate.IAnalysisSourceProperty
Back to top Generated by DocFX