Interface CfnDataSet.S3SourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.S3SourceProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.S3SourceProperty
extends software.amazon.jsii.JsiiSerializable
A physical table type for an S3 data source.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
S3SourceProperty s3SourceProperty = S3SourceProperty.builder()
.dataSourceArn("dataSourceArn")
.inputColumns(List.of(InputColumnProperty.builder()
.name("name")
.type("type")
.build()))
// the properties below are optional
.uploadSettings(UploadSettingsProperty.builder()
.containsHeader(false)
.delimiter("delimiter")
.format("format")
.startFromRow(123)
.textQualifier("textQualifier")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.S3SourcePropertystatic final classAn implementation forCfnDataSet.S3SourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSourceArn
The Amazon Resource Name (ARN) for the data source. -
getInputColumns
A physical table type for an S3 data source.For files that aren't JSON, only
STRINGdata types are supported in input columns. -
getUploadSettings
Information about the format for the S3 source file or files. -
builder
-