interface S3SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.S3SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_S3SourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.S3SourceProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.S3SourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const s3SourceProperty: quicksight_mixins.CfnDataSetPropsMixin.S3SourceProperty = {
dataSourceArn: 'dataSourceArn',
inputColumns: [{
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
}],
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
(optional)
The Amazon Resource Name (ARN) for the data source.
inputColumns?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
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
Go
Java
Python
TypeScript