[][src]Struct rusoto_amplify::AmplifyClient

pub struct AmplifyClient { /* fields omitted */ }

A client for the Amplify API.

Implementations

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,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> AmplifyClient[src]

Trait Implementations

impl Amplify for AmplifyClient[src]

pub fn create_app<'life0, 'async_trait>(
    &'life0 self,
    input: CreateAppRequest
) -> Pin<Box<dyn Future<Output = Result<CreateAppResult, RusotoError<CreateAppError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new Amplify app.

pub fn create_backend_environment<'life0, 'async_trait>(
    &'life0 self,
    input: CreateBackendEnvironmentRequest
) -> Pin<Box<dyn Future<Output = Result<CreateBackendEnvironmentResult, RusotoError<CreateBackendEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new backend environment for an Amplify app.

pub fn create_branch<'life0, 'async_trait>(
    &'life0 self,
    input: CreateBranchRequest
) -> Pin<Box<dyn Future<Output = Result<CreateBranchResult, RusotoError<CreateBranchError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new branch for an Amplify app.

pub fn create_deployment<'life0, 'async_trait>(
    &'life0 self,
    input: CreateDeploymentRequest
) -> Pin<Box<dyn Future<Output = Result<CreateDeploymentResult, RusotoError<CreateDeploymentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a deployment for a manually deployed Amplify app. Manually deployed apps are not connected to a repository.

pub fn create_domain_association<'life0, 'async_trait>(
    &'life0 self,
    input: CreateDomainAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<CreateDomainAssociationResult, RusotoError<CreateDomainAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new domain association for an Amplify app. This action associates a custom domain with the Amplify app

pub fn create_webhook<'life0, 'async_trait>(
    &'life0 self,
    input: CreateWebhookRequest
) -> Pin<Box<dyn Future<Output = Result<CreateWebhookResult, RusotoError<CreateWebhookError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new webhook on an Amplify app.

pub fn delete_app<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteAppRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteAppResult, RusotoError<DeleteAppError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes an existing Amplify app specified by an app ID.

pub fn delete_backend_environment<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteBackendEnvironmentRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteBackendEnvironmentResult, RusotoError<DeleteBackendEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a backend environment for an Amplify app.

pub fn delete_branch<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteBranchRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteBranchResult, RusotoError<DeleteBranchError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a branch for an Amplify app.

pub fn delete_domain_association<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteDomainAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteDomainAssociationResult, RusotoError<DeleteDomainAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a domain association for an Amplify app.

pub fn delete_job<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteJobRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteJobResult, RusotoError<DeleteJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a job for a branch of an Amplify app.

pub fn delete_webhook<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteWebhookRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteWebhookResult, RusotoError<DeleteWebhookError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a webhook.

pub fn generate_access_logs<'life0, 'async_trait>(
    &'life0 self,
    input: GenerateAccessLogsRequest
) -> Pin<Box<dyn Future<Output = Result<GenerateAccessLogsResult, RusotoError<GenerateAccessLogsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the website access logs for a specific time range using a presigned URL.

pub fn get_app<'life0, 'async_trait>(
    &'life0 self,
    input: GetAppRequest
) -> Pin<Box<dyn Future<Output = Result<GetAppResult, RusotoError<GetAppError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns an existing Amplify app by appID.

pub fn get_artifact_url<'life0, 'async_trait>(
    &'life0 self,
    input: GetArtifactUrlRequest
) -> Pin<Box<dyn Future<Output = Result<GetArtifactUrlResult, RusotoError<GetArtifactUrlError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the artifact info that corresponds to an artifact id.

pub fn get_backend_environment<'life0, 'async_trait>(
    &'life0 self,
    input: GetBackendEnvironmentRequest
) -> Pin<Box<dyn Future<Output = Result<GetBackendEnvironmentResult, RusotoError<GetBackendEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a backend environment for an Amplify app.

pub fn get_branch<'life0, 'async_trait>(
    &'life0 self,
    input: GetBranchRequest
) -> Pin<Box<dyn Future<Output = Result<GetBranchResult, RusotoError<GetBranchError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a branch for an Amplify app.

pub fn get_domain_association<'life0, 'async_trait>(
    &'life0 self,
    input: GetDomainAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<GetDomainAssociationResult, RusotoError<GetDomainAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the domain information for an Amplify app.

pub fn get_job<'life0, 'async_trait>(
    &'life0 self,
    input: GetJobRequest
) -> Pin<Box<dyn Future<Output = Result<GetJobResult, RusotoError<GetJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a job for a branch of an Amplify app.

pub fn get_webhook<'life0, 'async_trait>(
    &'life0 self,
    input: GetWebhookRequest
) -> Pin<Box<dyn Future<Output = Result<GetWebhookResult, RusotoError<GetWebhookError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the webhook information that corresponds to a specified webhook ID.

pub fn list_apps<'life0, 'async_trait>(
    &'life0 self,
    input: ListAppsRequest
) -> Pin<Box<dyn Future<Output = Result<ListAppsResult, RusotoError<ListAppsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the existing Amplify apps.

pub fn list_artifacts<'life0, 'async_trait>(
    &'life0 self,
    input: ListArtifactsRequest
) -> Pin<Box<dyn Future<Output = Result<ListArtifactsResult, RusotoError<ListArtifactsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of artifacts for a specified app, branch, and job.

pub fn list_backend_environments<'life0, 'async_trait>(
    &'life0 self,
    input: ListBackendEnvironmentsRequest
) -> Pin<Box<dyn Future<Output = Result<ListBackendEnvironmentsResult, RusotoError<ListBackendEnvironmentsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the backend environments for an Amplify app.

pub fn list_branches<'life0, 'async_trait>(
    &'life0 self,
    input: ListBranchesRequest
) -> Pin<Box<dyn Future<Output = Result<ListBranchesResult, RusotoError<ListBranchesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the branches of an Amplify app.

pub fn list_domain_associations<'life0, 'async_trait>(
    &'life0 self,
    input: ListDomainAssociationsRequest
) -> Pin<Box<dyn Future<Output = Result<ListDomainAssociationsResult, RusotoError<ListDomainAssociationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the domain associations for an Amplify app.

pub fn list_jobs<'life0, 'async_trait>(
    &'life0 self,
    input: ListJobsRequest
) -> Pin<Box<dyn Future<Output = Result<ListJobsResult, RusotoError<ListJobsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the jobs for a branch of an Amplify app.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of tags for a specified Amazon Resource Name (ARN).

pub fn list_webhooks<'life0, 'async_trait>(
    &'life0 self,
    input: ListWebhooksRequest
) -> Pin<Box<dyn Future<Output = Result<ListWebhooksResult, RusotoError<ListWebhooksError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of webhooks for an Amplify app.

pub fn start_deployment<'life0, 'async_trait>(
    &'life0 self,
    input: StartDeploymentRequest
) -> Pin<Box<dyn Future<Output = Result<StartDeploymentResult, RusotoError<StartDeploymentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Starts a deployment for a manually deployed app. Manually deployed apps are not connected to a repository.

pub fn start_job<'life0, 'async_trait>(
    &'life0 self,
    input: StartJobRequest
) -> Pin<Box<dyn Future<Output = Result<StartJobResult, RusotoError<StartJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Starts a new job for a branch of an Amplify app.

pub fn stop_job<'life0, 'async_trait>(
    &'life0 self,
    input: StopJobRequest
) -> Pin<Box<dyn Future<Output = Result<StopJobResult, RusotoError<StopJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Stops a job that is in progress for a branch of an Amplify app.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Tags the resource with a tag key and value.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Untags a resource with a specified Amazon Resource Name (ARN).

pub fn update_app<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateAppRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateAppResult, RusotoError<UpdateAppError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates an existing Amplify app.

pub fn update_branch<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateBranchRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateBranchResult, RusotoError<UpdateBranchError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates a branch for an Amplify app.

pub fn update_domain_association<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateDomainAssociationRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateDomainAssociationResult, RusotoError<UpdateDomainAssociationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a new domain association for an Amplify app.

pub fn update_webhook<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateWebhookRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateWebhookResult, RusotoError<UpdateWebhookError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates a webhook.

impl Clone for AmplifyClient[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.