Show / Hide Table of Contents

Interface CfnTemplatePropsMixin.ITemplateSourceEntityProperty

The source entity of the template.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.ITemplateSourceEntityProperty
Syntax (vb)
Public Interface CfnTemplatePropsMixin.ITemplateSourceEntityProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templatesourceentity.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.CfnPropertyMixins.AWS.QuickSight;

             var templateSourceEntityProperty = new TemplateSourceEntityProperty {
                 SourceAnalysis = new TemplateSourceAnalysisProperty {
                     Arn = "arn",
                     DataSetReferences = new [] { new DataSetReferenceProperty {
                         DataSetArn = "dataSetArn",
                         DataSetPlaceholder = "dataSetPlaceholder"
                     } }
                 },
                 SourceTemplate = new TemplateSourceTemplateProperty {
                     Arn = "arn"
                 }
             };

Synopsis

Properties

SourceAnalysis

The source analysis, if it is based on an analysis.

SourceTemplate

The source template, if it is based on an template.

Properties

SourceAnalysis

The source analysis, if it is based on an analysis.

object? SourceAnalysis { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templatesourceentity.html#cfn-quicksight-template-templatesourceentity-sourceanalysis

Type union: either IResolvable or CfnTemplatePropsMixin.ITemplateSourceAnalysisProperty

SourceTemplate

The source template, if it is based on an template.

object? SourceTemplate { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-templatesourceentity.html#cfn-quicksight-template-templatesourceentity-sourcetemplate

Type union: either IResolvable or CfnTemplatePropsMixin.ITemplateSourceTemplateProperty

Back to top Generated by DocFX