[][src]Struct rusoto_amplify::CreateDeploymentRequest

pub struct CreateDeploymentRequest {
    pub app_id: String,
    pub branch_name: String,
    pub file_map: Option<HashMap<String, String>>,
}

Request structure for create a new deployment.

Fields

app_id: String

Unique Id for an Amplify App.

branch_name: String

Name for the branch, for the Job.

file_map: Option<HashMap<String, String>>

Optional file map that contains file name as the key and file content md5 hash as the value. If this argument is provided, the service will generate different upload url per file. Otherwise, the service will only generate a single upload url for the zipped files.

Trait Implementations

impl Clone for CreateDeploymentRequest[src]

impl Debug for CreateDeploymentRequest[src]

impl Default for CreateDeploymentRequest[src]

impl PartialEq<CreateDeploymentRequest> for CreateDeploymentRequest[src]

impl Serialize for CreateDeploymentRequest[src]

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