[][src]Struct rusoto_amplify::CreateBackendEnvironmentRequest

pub struct CreateBackendEnvironmentRequest {
    pub app_id: String,
    pub deployment_artifacts: Option<String>,
    pub environment_name: String,
    pub stack_name: Option<String>,
}

The request structure for the backend environment create request.

Fields

app_id: String

The unique ID for an Amplify app.

deployment_artifacts: Option<String>

The name of deployment artifacts.

environment_name: String

The name for the backend environment.

stack_name: Option<String>

The AWS CloudFormation stack name of a backend environment.

Trait Implementations

impl Clone for CreateBackendEnvironmentRequest[src]

impl Debug for CreateBackendEnvironmentRequest[src]

impl Default for CreateBackendEnvironmentRequest[src]

impl PartialEq<CreateBackendEnvironmentRequest> for CreateBackendEnvironmentRequest[src]

impl Serialize for CreateBackendEnvironmentRequest[src]

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