Struct rusoto_apigateway::Stage [] [src]

pub struct Stage {
    pub cache_cluster_enabled: Option<bool>,
    pub cache_cluster_size: Option<String>,
    pub cache_cluster_status: Option<String>,
    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 variables: Option<HashMap<String, String>>,
}

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

Fields

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.

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 Amazon API Gateway.

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]

[src]

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

impl Debug for Stage
[src]

[src]

Formats the value using the given formatter.

impl Clone for Stage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more