[][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 variables: Option<HashMap<String, String>>,
}

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

Fields

Settings for logging access in this stage.

Specifies whether a cache cluster is enabled for the stage.

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

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

Settings for the canary deployment in this stage.

The identifier of a client certificate for an API stage.

The timestamp when the stage was created.

The identifier of the Deployment that the stage points to.

The stage's description.

The version of the associated API documentation.

The timestamp when the stage last updated.

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.

The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway.

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

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

Trait Implementations

impl Default for Stage
[src]

Returns the "default value" for a type. Read more

impl PartialEq<Stage> for Stage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Stage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Stage
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Stage

impl Sync for Stage

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T