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

Class: Aws::ImportExport::Types::UpdateJobInput

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

Overview

Note:

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

{
  job_id: "JobId", # required
  manifest: "Manifest", # required
  job_type: "Import", # required, accepts Import, Export
  validate_only: false, # required
  api_version: "APIVersion",
}

Input structure for the UpateJob operation.

Instance Attribute Summary collapse

Instance Attribute Details

#api_versionString

Specifies the version of the client tool.

Returns:

  • (String)

    Specifies the version of the client tool.

#job_idString

A unique identifier which refers to a particular job.

Returns:

  • (String)

    A unique identifier which refers to a particular job.

#job_typeString

Specifies whether the job to initiate is an import or export job.

Possible values:

  • Import
  • Export

Returns:

  • (String)

    Specifies whether the job to initiate is an import or export job.

#manifestString

The UTF-8 encoded text of the manifest file.

Returns:

  • (String)

    The UTF-8 encoded text of the manifest file.

#validate_onlyBoolean

Validate the manifest and parameter values in the request but do not actually create a job.

Returns:

  • (Boolean)

    Validate the manifest and parameter values in the request but do not actually create a job.