class Aws::Honeycode::Types::StartTableDataImportJobRequest

@note When making an API call, you may pass StartTableDataImportJobRequest

data as a hash:

    {
      workbook_id: "ResourceId", # required
      data_source: { # required
        data_source_config: { # required
          data_source_url: "SecureURL",
        },
      },
      data_format: "DELIMITED_TEXT", # required, accepts DELIMITED_TEXT
      destination_table_id: "ResourceId", # required
      import_options: { # required
        destination_options: {
          column_map: {
            "ResourceId" => {
              column_index: 1,
            },
          },
        },
        delimited_text_options: {
          delimiter: "DelimitedTextDelimiter", # required
          has_header_row: false,
          ignore_empty_rows: false,
          data_character_encoding: "UTF-8", # accepts UTF-8, US-ASCII, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-16
        },
      },
      client_request_token: "ClientRequestToken", # required
    }

@!attribute [rw] workbook_id

The ID of the workbook where the rows are being imported.

If a workbook with the specified id could not be found, this API
throws ResourceNotFoundException.
@return [String]

@!attribute [rw] data_source

The source of the data that is being imported. The size of source
must be no larger than 100 MB. Source must have no more than 100,000
cells and no more than 1,000 rows.
@return [Types::ImportDataSource]

@!attribute [rw] data_format

The format of the data that is being imported. Currently the only
option supported is "DELIMITED\_TEXT".
@return [String]

@!attribute [rw] destination_table_id

The ID of the table where the rows are being imported.

If a table with the specified id could not be found, this API throws
ResourceNotFoundException.
@return [String]

@!attribute [rw] import_options

The options for customizing this import request.
@return [Types::ImportOptions]

@!attribute [rw] client_request_token

The request token for performing the update action. Request tokens
help to identify duplicate requests. If a call times out or fails
due to a transient error like a failed network connection, you can
retry the call with the same request token. The service ensures that
if the first call using that request token is successfully
performed, the second call will not perform the action again.

Note that request tokens are valid only for a few minutes. You
cannot use request tokens to dedupe requests spanning hours or days.
@return [String]

@see docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/StartTableDataImportJobRequest AWS API Documentation

Constants

SENSITIVE