[][src]Struct rusoto_apigatewayv2::CreateStageResponse

pub struct CreateStageResponse {
    pub access_log_settings: Option<AccessLogSettings>,
    pub api_gateway_managed: Option<bool>,
    pub auto_deploy: Option<bool>,
    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_deployment_status_message: Option<String>,
    pub last_updated_date: Option<f64>,
    pub route_settings: Option<HashMap<String, RouteSettings>>,
    pub stage_name: Option<String>,
    pub stage_variables: Option<HashMap<String, String>>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

access_log_settings: Option<AccessLogSettings>

Settings for logging access in this stage.

api_gateway_managed: Option<bool>

Specifies whether a stage is managed by API Gateway. If you created an API using quick create, the $default stage is managed by API Gateway. You can't modify the $default stage.

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.

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

description: Option<String>

The description of the stage.

last_deployment_status_message: Option<String>

Describes the status of the last deployment of a stage. Supported only for stages with autoDeploy enabled.

last_updated_date: Option<f64>

The timestamp when the stage was last updated.

route_settings: Option<HashMap<String, RouteSettings>>

Route settings for the stage, by routeKey.

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

tags: Option<HashMap<String, String>>

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

Trait Implementations

impl Clone for CreateStageResponse[src]

impl Debug for CreateStageResponse[src]

impl Default for CreateStageResponse[src]

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

impl PartialEq<CreateStageResponse> for CreateStageResponse[src]

impl StructuralPartialEq for CreateStageResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.