Show / Hide Table of Contents

Class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty

The analysis template artifacts.

Inheritance
object
CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty
Implements
CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty : CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty Implements CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.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 analysisTemplateArtifactsProperty = 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"
                     }
                 } }
             };

Synopsis

Constructors

AnalysisTemplateArtifactsProperty()

The analysis template artifacts.

Properties

AdditionalArtifacts

Additional artifacts for the analysis template.

EntryPoint

The entry point for the analysis template artifacts.

RoleArn

The role ARN for the analysis template artifacts.

Constructors

AnalysisTemplateArtifactsProperty()

The analysis template artifacts.

public AnalysisTemplateArtifactsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.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 analysisTemplateArtifactsProperty = 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"
                     }
                 } }
             };

Properties

AdditionalArtifacts

Additional artifacts for the analysis template.

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

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnAnalysisTemplate.IAnalysisTemplateArtifactProperty)[]

EntryPoint

The entry point for the analysis template artifacts.

public object EntryPoint { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnalysisTemplate.IAnalysisTemplateArtifactProperty

RoleArn

The role ARN for the analysis template artifacts.

public string RoleArn { get; set; }
Property Value

string

Remarks

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

Implements

CfnAnalysisTemplate.IAnalysisTemplateArtifactsProperty
Back to top Generated by DocFX