[][src]Struct rusoto_apigatewayv2::CreateStageRequest

pub struct CreateStageRequest {
    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>>,
    pub tags: Option<HashMap<String, String>>,
}

Creates a new Stage resource to represent 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. Supported only for WebSocket APIs.

default_route_settings: Option<RouteSettings>

The default route settings for the stage.

deployment_id: Option<String>

The deployment identifier of the API stage.

description: Option<String>

The description for the API stage.

route_settings: Option<HashMap<String, RouteSettings>>

Route settings for the stage, by routeKey.

stage_name: String

The name of 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-._~:/?#&=,]+.

tags: Option<HashMap<String, String>>

The collection of tags. Each tag element is associated with a given resource.

Trait Implementations

impl Clone for CreateStageRequest[src]

impl Debug for CreateStageRequest[src]

impl Default for CreateStageRequest[src]

impl PartialEq<CreateStageRequest> for CreateStageRequest[src]

impl Serialize for CreateStageRequest[src]

impl StructuralPartialEq for CreateStageRequest[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.