@Stability(value=Stable)
public static interface CfnDataSet.S3SourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSet.S3SourceProperty.Builder
A builder for
CfnDataSet.S3SourceProperty |
static class |
CfnDataSet.S3SourceProperty.Jsii$Proxy
An implementation for
CfnDataSet.S3SourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSet.S3SourceProperty.Builder |
builder() |
String |
getDataSourceArn()
The Amazon Resource Name (ARN) for the data source.
|
Object |
getInputColumns()
A physical table type for an S3 data source.
|
default Object |
getUploadSettings()
Information about the format for the S3 source file or files.
|
@Stability(value=Stable) @NotNull String getDataSourceArn()
@Stability(value=Stable) @NotNull Object getInputColumns()
For files that aren't JSON, only
STRINGdata types are supported in input columns.
@Stability(value=Stable) @Nullable default Object getUploadSettings()
@Stability(value=Stable) static CfnDataSet.S3SourceProperty.Builder builder()
Copyright © 2022. All rights reserved.