interface UploadSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.UploadSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_UploadSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.UploadSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.UploadSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » UploadSettingsProperty |
Information about the format for a source file or files.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const uploadSettingsProperty: quicksight.CfnDataSetPropsMixin.UploadSettingsProperty = {
containsHeader: false,
delimiter: 'delimiter',
format: 'format',
startFromRow: 123,
textQualifier: 'textQualifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| contains | boolean | IResolvable | Whether the file has a header row, or the files each have a header row. |
| delimiter? | string | The delimiter between values in the file. |
| format? | string | File format. |
| start | number | A row number to start reading data from. |
| text | string | Text qualifier. |
containsHeader?
Type:
boolean | IResolvable
(optional)
Whether the file has a header row, or the files each have a header row.
delimiter?
Type:
string
(optional)
The delimiter between values in the file.
format?
Type:
string
(optional)
File format.
startFromRow?
Type:
number
(optional)
A row number to start reading data from.
textQualifier?
Type:
string
(optional)
Text qualifier.

.NET
Go
Java
Python
TypeScript