[][src]Struct rusoto_apigatewayv2::Stage

pub struct Stage {
    pub access_log_settings: Option<AccessLogSettings>,
    pub client_certificate_id: Option<String>,
    pub created_date: Option<f64>,
    pub default_route_settings: Option<RouteSettings>,
    pub deployment_id: Option<String>,
    pub description: Option<String>,
    pub last_updated_date: Option<f64>,
    pub route_settings: Option<HashMap<String, RouteSettings>>,
    pub stage_name: String,
    pub stage_variables: Option<HashMap<String, String>>,
}

Represents an API stage.

Fields

access_log_settings: Option<AccessLogSettings>

Settings for logging access in this stage.

client_certificate_id: Option<String>

The identifier of a client certificate for a Stage.

created_date: Option<f64>

The timestamp when the stage was created.

default_route_settings: Option<RouteSettings>

Default route settings for the stage.

deployment_id: Option<String>

The identifier of the Deployment that the Stage is associated with.

description: Option<String>

The description of the stage.

last_updated_date: Option<f64>

The timestamp when the stage was last updated.

route_settings: Option<HashMap<String, RouteSettings>>

Route settings for the stage.

stage_name: String

The name of the stage.

stage_variables: Option<HashMap<String, String>>

A map that defines the stage variables for a stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+.

Trait Implementations

impl PartialEq<Stage> for Stage[src]

impl Default for Stage[src]

impl Clone for Stage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Stage[src]

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

Auto Trait Implementations

impl Send for Stage

impl Sync for Stage

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self