[][src]Struct rusoto_amplify::AmplifyClient

pub struct AmplifyClient { /* fields omitted */ }

A client for the Amplify API.

Methods

impl AmplifyClient[src]

pub fn new(region: Region) -> AmplifyClient[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
) -> AmplifyClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl Amplify for AmplifyClient[src]

fn create_app(
    &self,
    input: CreateAppRequest
) -> RusotoFuture<CreateAppResult, CreateAppError>
[src]

Creates a new Amplify App.

fn create_branch(
    &self,
    input: CreateBranchRequest
) -> RusotoFuture<CreateBranchResult, CreateBranchError>
[src]

Creates a new Branch for an Amplify App.

fn create_domain_association(
    &self,
    input: CreateDomainAssociationRequest
) -> RusotoFuture<CreateDomainAssociationResult, CreateDomainAssociationError>
[src]

Create a new DomainAssociation on an App

fn delete_app(
    &self,
    input: DeleteAppRequest
) -> RusotoFuture<DeleteAppResult, DeleteAppError>
[src]

Delete an existing Amplify App by appId.

fn delete_branch(
    &self,
    input: DeleteBranchRequest
) -> RusotoFuture<DeleteBranchResult, DeleteBranchError>
[src]

Deletes a branch for an Amplify App.

fn delete_domain_association(
    &self,
    input: DeleteDomainAssociationRequest
) -> RusotoFuture<DeleteDomainAssociationResult, DeleteDomainAssociationError>
[src]

Deletes a DomainAssociation.

fn delete_job(
    &self,
    input: DeleteJobRequest
) -> RusotoFuture<DeleteJobResult, DeleteJobError>
[src]

Delete a job, for an Amplify branch, part of Amplify App.

fn get_app(
    &self,
    input: GetAppRequest
) -> RusotoFuture<GetAppResult, GetAppError>
[src]

Retrieves an existing Amplify App by appId.

fn get_branch(
    &self,
    input: GetBranchRequest
) -> RusotoFuture<GetBranchResult, GetBranchError>
[src]

Retrieves a branch for an Amplify App.

fn get_domain_association(
    &self,
    input: GetDomainAssociationRequest
) -> RusotoFuture<GetDomainAssociationResult, GetDomainAssociationError>
[src]

Retrieves domain info that corresponds to an appId and domainName.

fn get_job(
    &self,
    input: GetJobRequest
) -> RusotoFuture<GetJobResult, GetJobError>
[src]

Get a job for a branch, part of an Amplify App.

fn list_apps(
    &self,
    input: ListAppsRequest
) -> RusotoFuture<ListAppsResult, ListAppsError>
[src]

Lists existing Amplify Apps.

fn list_branches(
    &self,
    input: ListBranchesRequest
) -> RusotoFuture<ListBranchesResult, ListBranchesError>
[src]

Lists branches for an Amplify App.

fn list_domain_associations(
    &self,
    input: ListDomainAssociationsRequest
) -> RusotoFuture<ListDomainAssociationsResult, ListDomainAssociationsError>
[src]

List domains with an app

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

List Jobs for a branch, part of an Amplify App.

fn start_job(
    &self,
    input: StartJobRequest
) -> RusotoFuture<StartJobResult, StartJobError>
[src]

Starts a new job for a branch, part of an Amplify App.

fn stop_job(
    &self,
    input: StopJobRequest
) -> RusotoFuture<StopJobResult, StopJobError>
[src]

Stop a job that is in progress, for an Amplify branch, part of Amplify App.

fn update_app(
    &self,
    input: UpdateAppRequest
) -> RusotoFuture<UpdateAppResult, UpdateAppError>
[src]

Updates an existing Amplify App.

fn update_branch(
    &self,
    input: UpdateBranchRequest
) -> RusotoFuture<UpdateBranchResult, UpdateBranchError>
[src]

Updates a branch for an Amplify App.

fn update_domain_association(
    &self,
    input: UpdateDomainAssociationRequest
) -> RusotoFuture<UpdateDomainAssociationResult, UpdateDomainAssociationError>
[src]

Create a new DomainAssociation on an App

impl Clone for AmplifyClient[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 AmplifyClient

impl Sync for AmplifyClient

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