[][src]Struct rusoto_apigatewayv2::UpdateStageRequest

pub struct UpdateStageRequest {
    pub access_log_settings: Option<AccessLogSettings>,
    pub api_id: String,
    pub auto_deploy: Option<bool>,
    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_name: String,
    pub stage_variables: Option<HashMap<String, String>>,
}

Updates a Stage.

Fields

access_log_settings: Option<AccessLogSettings>

Settings for logging access in this stage.

api_id: String

The API identifier.

auto_deploy: Option<bool>

Specifies whether updates to an API automatically trigger a new deployment. The default value is false.

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. Can't be updated if autoDeploy is enabled.

description: Option<String>

The description for the API stage.

route_settings: Option<HashMap<String, RouteSettings>>

Route settings for the stage.

stage_name: String

The stage name. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.

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 Clone for UpdateStageRequest[src]

impl Debug for UpdateStageRequest[src]

impl Default for UpdateStageRequest[src]

impl PartialEq<UpdateStageRequest> for UpdateStageRequest[src]

impl Serialize for UpdateStageRequest[src]

impl StructuralPartialEq for UpdateStageRequest[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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.