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")
         // the properties below are optional
         .inputColumns(List.of(InputColumnProperty.builder()
                 .name("name")
                 .type("type")
                 // the properties below are optional
                 .subType("subType")
                 .build()))
         .uploadSettings(UploadSettingsProperty.builder()
                 .containsHeader(false)
                 .delimiter("delimiter")
                 .format("format")
                 .startFromRow(123)
                 .textQualifier("textQualifier")
                 .build())
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.S3SourcePropertystatic final classAn implementation forCfnDataSet.S3SourceProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDataSourceArnThe Amazon Resource Name (ARN) for the data source.- See Also:
 
- 
getInputColumnsA physical table type for an S3 data source.For files that aren't JSON, only STRINGdata types are supported in input columns.Returns union: either IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.InputColumnProperty>- See Also:
 
- 
getUploadSettingsInformation about the format for the S3 source file or files.Returns union: either IResolvableorCfnDataSet.UploadSettingsProperty- See Also:
 
- 
builder
 
-