You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::QuickSight::Types::S3Source

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3Source as input to an Aws::Client method, you can use a vanilla Hash:

{
  data_source_arn: "Arn", # required
  upload_settings: {
    format: "CSV", # accepts CSV, TSV, CLF, ELF, XLSX, JSON
    start_from_row: 1,
    contains_header: false,
    text_qualifier: "DOUBLE_QUOTE", # accepts DOUBLE_QUOTE, SINGLE_QUOTE
    delimiter: "Delimiter",
  },
  input_columns: [ # required
    {
      name: "ColumnName", # required
      type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
    },
  ],
}

A physical table type for as S3 data source.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#data_source_arnString

The amazon Resource Name (ARN) for the data source.

Returns:

  • (String)

    The amazon Resource Name (ARN) for the data source.

#input_columnsArray<Types::InputColumn>

A physical table type for as S3 data source.

Returns:

#upload_settingsTypes::UploadSettings

Information about the format for the S3 source file or files.

Returns: