interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.S3SourceProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.S3SourceProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.S3SourceProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDataSet » S3SourceProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const s3SourceProperty: quicksight.CfnDataSet.S3SourceProperty = {
dataSourceArn: 'dataSourceArn',
inputColumns: [{
name: 'name',
type: 'type',
}],
// the properties below are optional
uploadSettings: {
containsHeader: false,
delimiter: 'delimiter',
format: 'format',
startFromRow: 123,
textQualifier: 'textQualifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) for the data source. |
| input | IResolvable | IResolvable | Input[] | A physical table type for an S3 data source. |
| upload | IResolvable | Upload | Information about the format for the S3 source file or files. |
dataSourceArn
Type:
string
The Amazon Resource Name (ARN) for the data source.
inputColumns
Type:
IResolvable | IResolvable | Input[]
A physical table type for an S3 data source.
For files that aren't JSON, only
STRINGdata types are supported in input columns.
uploadSettings?
Type:
IResolvable | Upload
(optional)
Information about the format for the S3 source file or files.

.NET
Java
Python
TypeScript