[][src]Struct rusoto_amplify::BackendEnvironment

pub struct BackendEnvironment {
    pub backend_environment_arn: String,
    pub create_time: f64,
    pub deployment_artifacts: Option<String>,
    pub environment_name: String,
    pub stack_name: Option<String>,
    pub update_time: f64,
}

Backend environment for an Amplify App.

Fields

backend_environment_arn: String

Arn for a backend environment, part of an Amplify App.

create_time: f64

Creation date and time for a backend environment, part of an Amplify App.

deployment_artifacts: Option<String>

Name of deployment artifacts.

environment_name: String

Name for a backend environment, part of an Amplify App.

stack_name: Option<String>

CloudFormation stack name of backend environment.

update_time: f64

Last updated date and time for a backend environment, part of an Amplify App.

Trait Implementations

impl Clone for BackendEnvironment[src]

impl Debug for BackendEnvironment[src]

impl Default for BackendEnvironment[src]

impl<'de> Deserialize<'de> for BackendEnvironment[src]

impl PartialEq<BackendEnvironment> for BackendEnvironment[src]

impl StructuralPartialEq for BackendEnvironment[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.