[][src]Struct rusoto_importexport::ImportExportClient

pub struct ImportExportClient { /* fields omitted */ }

A client for the AWS Import/Export API.

Methods

impl ImportExportClient[src]

pub fn new(region: Region) -> ImportExportClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> ImportExportClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl ImportExport for ImportExportClient[src]

fn cancel_job(
    &self,
    input: CancelJobInput
) -> RusotoFuture<CancelJobOutput, CancelJobError>
[src]

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.

fn create_job(
    &self,
    input: CreateJobInput
) -> RusotoFuture<CreateJobOutput, CreateJobError>
[src]

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.

fn get_shipping_label(
    &self,
    input: GetShippingLabelInput
) -> RusotoFuture<GetShippingLabelOutput, GetShippingLabelError>
[src]

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

fn get_status(
    &self,
    input: GetStatusInput
) -> RusotoFuture<GetStatusOutput, GetStatusError>
[src]

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.

fn list_jobs(
    &self,
    input: ListJobsInput
) -> RusotoFuture<ListJobsOutput, ListJobsError>
[src]

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.

fn update_job(
    &self,
    input: UpdateJobInput
) -> RusotoFuture<UpdateJobOutput, UpdateJobError>
[src]

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.

impl Clone for ImportExportClient[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ImportExportClient

impl Sync for ImportExportClient

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self