public static interface CfnDataSet.S3SourceProperty
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() |
java.lang.String |
getDataSourceArn()
The Amazon Resource Name (ARN) for the data source.
|
java.lang.Object |
getInputColumns()
A physical table type for an S3 data source.
|
default java.lang.Object |
getUploadSettings()
Information about the format for the S3 source file or files.
|
java.lang.String getDataSourceArn()
java.lang.Object getInputColumns()
For files that aren't JSON, only
STRING
data types are supported in input columns.
default java.lang.Object getUploadSettings()
static CfnDataSet.S3SourceProperty.Builder builder()