Struct rusoto_apigateway::Deployment [] [src]

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/{restapi_id}/deployments/{deployment_id}).

Fields

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

The date and time that the deployment resource was created.

The description for the deployment resource.

The identifier for the deployment resource.

Trait Implementations

impl Default for Deployment
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Deployment
[src]

[src]

Formats the value using the given formatter.

impl Clone for Deployment
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more