Show / Hide Table of Contents

Class CfnDataSetPropsMixin.ImportTableOperationProperty

A transform operation that imports data from a source table.

Inheritance
object
CfnDataSetPropsMixin.ImportTableOperationProperty
Implements
CfnDataSetPropsMixin.IImportTableOperationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.ImportTableOperationProperty : CfnDataSetPropsMixin.IImportTableOperationProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.ImportTableOperationProperty Implements CfnDataSetPropsMixin.IImportTableOperationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-importtableoperation.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var importTableOperationProperty = new ImportTableOperationProperty {
                 Alias = "alias",
                 Source = new ImportTableOperationSourceProperty {
                     ColumnIdMappings = new [] { new DataSetColumnIdMappingProperty {
                         SourceColumnId = "sourceColumnId",
                         TargetColumnId = "targetColumnId"
                     } },
                     SourceTableId = "sourceTableId"
                 }
             };

Synopsis

Constructors

ImportTableOperationProperty()

A transform operation that imports data from a source table.

Properties

Alias

Alias for this operation.

Source

The source configuration that specifies which source table to import and any column mappings.

Constructors

ImportTableOperationProperty()

A transform operation that imports data from a source table.

public ImportTableOperationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-importtableoperation.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var importTableOperationProperty = new ImportTableOperationProperty {
                 Alias = "alias",
                 Source = new ImportTableOperationSourceProperty {
                     ColumnIdMappings = new [] { new DataSetColumnIdMappingProperty {
                         SourceColumnId = "sourceColumnId",
                         TargetColumnId = "targetColumnId"
                     } },
                     SourceTableId = "sourceTableId"
                 }
             };

Properties

Alias

Alias for this operation.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-importtableoperation.html#cfn-quicksight-dataset-importtableoperation-alias

Source

The source configuration that specifies which source table to import and any column mappings.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-importtableoperation.html#cfn-quicksight-dataset-importtableoperation-source

Type union: either IResolvable or CfnDataSetPropsMixin.IImportTableOperationSourceProperty

Implements

CfnDataSetPropsMixin.IImportTableOperationProperty
Back to top Generated by DocFX