[][src]Struct rusoto_apigateway::Stage

pub struct Stage {
    pub access_log_settings: Option<AccessLogSettings>,
    pub cache_cluster_enabled: Option<bool>,
    pub cache_cluster_size: Option<String>,
    pub cache_cluster_status: Option<String>,
    pub canary_settings: Option<CanarySettings>,
    pub client_certificate_id: Option<String>,
    pub created_date: Option<f64>,
    pub deployment_id: Option<String>,
    pub description: Option<String>,
    pub documentation_version: Option<String>,
    pub last_updated_date: Option<f64>,
    pub method_settings: Option<HashMap<String, MethodSetting>>,
    pub stage_name: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub tracing_enabled: Option<bool>,
    pub variables: Option<HashMap<String, String>>,
    pub web_acl_arn: Option<String>,
}

Represents a unique identifier for a version of a deployed RestApi that is callable by users.

Fields

access_log_settings: Option<AccessLogSettings>

Settings for logging access in this stage.

cache_cluster_enabled: Option<bool>

Specifies whether a cache cluster is enabled for the stage.

cache_cluster_size: Option<String>

The size of the cache cluster for the stage, if enabled.

cache_cluster_status: Option<String>

The status of the cache cluster for the stage, if enabled.

canary_settings: Option<CanarySettings>

Settings for the canary deployment in this stage.

client_certificate_id: Option<String>

The identifier of a client certificate for an API stage.

created_date: Option<f64>

The timestamp when the stage was created.

deployment_id: Option<String>

The identifier of the Deployment that the stage points to.

description: Option<String>

The stage's description.

documentation_version: Option<String>

The version of the associated API documentation.

last_updated_date: Option<f64>

The timestamp when the stage last updated.

method_settings: Option<HashMap<String, MethodSetting>>

A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key below) are method paths defined as {resource_path}/{http_method} for an individual method override, or /\*/\* for overriding all methods in the stage.

stage_name: Option<String>

The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.

tags: Option<HashMap<String, String>>

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

tracing_enabled: Option<bool>

Specifies whether active tracing with X-ray is enabled for the 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-._~:/?#&=,]+.

web_acl_arn: Option<String>

The ARN of the WebAcl associated with the Stage.

Trait Implementations

impl Clone for Stage[src]

impl Debug for Stage[src]

impl Default for Stage[src]

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

impl PartialEq<Stage> for Stage[src]

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