Importexport

This page documents function available when using the Importexport module, created with @service Importexport.

Index

Documentation

Main.Importexport.cancel_jobMethod
cancel_job(job_id)
cancel_job(job_id, params::Dict{String,<:Any})

This operation cancels a specified job. Only the job owner can cancel it. The operation fails if the job has already started or is complete.

Arguments

  • job_id:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
source
Main.Importexport.create_jobMethod
create_job(job_type, manifest, validate_only)
create_job(job_type, manifest, validate_only, params::Dict{String,<:Any})

This operation initiates the process of scheduling an upload or download of your data. You include in the request a manifest that describes the data transfer specifics. The response to the request includes a job ID, which you can use in other operations, a signature that you use to identify your storage device, and the address where you should ship your storage device.

Arguments

  • job_type:
  • manifest:
  • validate_only:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
  • "ManifestAddendum":
source
Main.Importexport.get_shipping_labelMethod
get_shipping_label(job_ids)
get_shipping_label(job_ids, params::Dict{String,<:Any})

This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.

Arguments

  • job_ids:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
  • "city":
  • "company":
  • "country":
  • "name":
  • "phoneNumber":
  • "postalCode":
  • "stateOrProvince":
  • "street1":
  • "street2":
  • "street3":
source
Main.Importexport.get_statusMethod
get_status(job_id)
get_status(job_id, params::Dict{String,<:Any})

This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.

Arguments

  • job_id:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
source
Main.Importexport.list_jobsMethod
list_jobs()
list_jobs(params::Dict{String,<:Any})

This operation returns the jobs associated with the requester. AWS Import/Export lists the jobs in reverse chronological order based on the date of creation. For example if Job Test1 was created 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation would return Test2 followed by Test1.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
  • "Marker":
  • "MaxJobs":
source
Main.Importexport.update_jobMethod
update_job(job_id, job_type, manifest, validate_only)
update_job(job_id, job_type, manifest, validate_only, params::Dict{String,<:Any})

You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file. The manifest file attached to this request replaces the original manifest file. You can only use the operation after a CreateJob request but before the data transfer starts and you can only use it on jobs you own.

Arguments

  • job_id:
  • job_type:
  • manifest:
  • validate_only:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "APIVersion":
source