[][src]Struct rusoto_apigatewayv2::UpdateStageInput

pub struct UpdateStageInput {
    pub access_log_settings: Option<AccessLogSettings>,
    pub client_certificate_id: Option<String>,
    pub default_route_settings: Option<RouteSettings>,
    pub deployment_id: Option<String>,
    pub description: Option<String>,
    pub route_settings: Option<HashMap<String, RouteSettings>>,
    pub stage_variables: Option<HashMap<String, String>>,
}

Represents the input parameters for an UpdateStage request.

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.

default_route_settings: Option<RouteSettings>

The default route settings for the stage.

deployment_id: Option<String>

The deployment identifier for the API stage.

description: Option<String>

The description for the API stage.

route_settings: Option<HashMap<String, RouteSettings>>

Route settings for the stage.

stage_variables: Option<HashMap<String, String>>

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

Trait Implementations

impl Default for UpdateStageInput[src]

impl PartialEq<UpdateStageInput> for UpdateStageInput[src]

impl Clone for UpdateStageInput[src]

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

Performs copy-assignment from source. Read more

impl Debug for UpdateStageInput[src]

Auto Trait Implementations

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

The resulting type after obtaining ownership.

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> Any for T where
    T: 'static + ?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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self