[][src]Struct rusoto_amplify::StartDeploymentRequest

pub struct StartDeploymentRequest {
    pub app_id: String,
    pub branch_name: String,
    pub job_id: Option<String>,
    pub source_url: Option<String>,
}

The request structure for the start a deployment request.

Fields

app_id: String

The unique ID for an Amplify app.

branch_name: String

The name for the branch, for the job.

job_id: Option<String>

The job ID for this deployment, generated by the create deployment request.

source_url: Option<String>

The source URL for this deployment, used when calling start deployment without create deployment. The source URL can be any HTTP GET URL that is publicly accessible and downloads a single .zip file.

Trait Implementations

impl Clone for StartDeploymentRequest[src]

impl Debug for StartDeploymentRequest[src]

impl Default for StartDeploymentRequest[src]

impl PartialEq<StartDeploymentRequest> for StartDeploymentRequest[src]

impl Serialize for StartDeploymentRequest[src]

impl StructuralPartialEq for StartDeploymentRequest[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> 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.