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

Class: Aws::GlueDataBrew::Types::UpdateDatasetRequest

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

Overview

Note:

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

{
  name: "DatasetName", # required
  format_options: {
    json: {
      multi_line: false,
    },
    excel: {
      sheet_names: ["SheetName"],
      sheet_indexes: [1],
    },
  },
  input: { # required
    s3_input_definition: {
      bucket: "Bucket", # required
      key: "Key",
    },
    data_catalog_input_definition: {
      catalog_id: "CatalogId",
      database_name: "DatabaseName", # required
      table_name: "TableName", # required
      temp_directory: {
        bucket: "Bucket", # required
        key: "Key",
      },
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#format_optionsTypes::FormatOptions

Options that define how Microsoft Excel input is to be interpreted by DataBrew.

Returns:

  • (Types::FormatOptions)

    Options that define how Microsoft Excel input is to be interpreted by DataBrew.

    .

#inputTypes::Input

Information on how AWS Glue DataBrew can find data, in either the AWS Glue Data Catalog or Amazon S3.

Returns:

  • (Types::Input)

    Information on how AWS Glue DataBrew can find data, in either the AWS Glue Data Catalog or Amazon S3.

    .

#nameString

The name of the dataset to be updated.

Returns:

  • (String)

    The name of the dataset to be updated.