[][src]Struct rusoto_apigateway::Deployment

pub struct Deployment {
    pub api_summary: Option<HashMap<String, HashMap<String, MethodSnapshot>>>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub id: Option<String>,
}

An immutable representation of a RestApi resource that can be called by users using Stages. A deployment must be associated with a Stage for it to be callable over the Internet.

To create a deployment, call POST on the Deployments resource of a RestApi. To view, update, or delete a deployment, call GET, PATCH, or DELETE on the specified deployment resource (/restapis/{restapiid}/deployments/{deploymentid}).

Fields

api_summary: Option<HashMap<String, HashMap<String, MethodSnapshot>>>

A summary of the RestApi at the date and time that the deployment resource was created.

created_date: Option<f64>

The date and time that the deployment resource was created.

description: Option<String>

The description for the deployment resource.

id: Option<String>

The identifier for the deployment resource.

Trait Implementations

impl Clone for Deployment[src]

impl Debug for Deployment[src]

impl Default for Deployment[src]

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

impl PartialEq<Deployment> for Deployment[src]

impl StructuralPartialEq for Deployment[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: for<'de> 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> Sealed<T> for T where
    T: ?Sized

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.