Show / Hide Table of Contents

Interface CfnDataSetPropsMixin.IS3SourceProperty

A physical table type for an S3 data source.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-s3source.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 s3SourceProperty = new S3SourceProperty {
                 DataSourceArn = "dataSourceArn",
                 InputColumns = new [] { new InputColumnProperty {
                     Id = "id",
                     Name = "name",
                     SubType = "subType",
                     Type = "type"
                 } },
                 UploadSettings = new UploadSettingsProperty {
                     ContainsHeader = false,
                     Delimiter = "delimiter",
                     Format = "format",
                     StartFromRow = 123,
                     TextQualifier = "textQualifier"
                 }
             };

Synopsis

Properties

DataSourceArn

The Amazon Resource Name (ARN) for the data source.

InputColumns

A physical table type for an S3 data source.

UploadSettings

Information about the format for the S3 source file or files.

Properties

DataSourceArn

The Amazon Resource Name (ARN) for the data source.

string? DataSourceArn { get; }
Property Value

string

Remarks

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

InputColumns

A physical table type for an S3 data source.

object? InputColumns { get; }
Property Value

object

Remarks
For files that aren't JSON, only <code>STRING</code> data types are supported in input columns.

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

Type union: either IResolvable or (either IResolvable or CfnDataSetPropsMixin.IInputColumnProperty)[]

UploadSettings

Information about the format for the S3 source file or files.

object? UploadSettings { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataSetPropsMixin.IUploadSettingsProperty

Back to top Generated by DocFX