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();
 
  • Method Details

    • getDataSourceArn

      @Stability(Stable) @NotNull String getDataSourceArn()
      The Amazon Resource Name (ARN) for the data source.
    • getInputColumns

      @Stability(Stable) @NotNull Object getInputColumns()
      A physical table type for an S3 data source.

      For files that aren't JSON, only STRING data types are supported in input columns.

    • getUploadSettings

      @Stability(Stable) @Nullable default Object getUploadSettings()
      Information about the format for the S3 source file or files.
    • builder

      @Stability(Stable) static CfnDataSet.S3SourceProperty.Builder builder()
      Returns:
      a CfnDataSet.S3SourceProperty.Builder of CfnDataSet.S3SourceProperty