#[non_exhaustive]
pub struct AwsApiGatewayV2StageDetails {
Show 13 fields pub client_certificate_id: Option<String>, pub created_date: Option<String>, pub description: Option<String>, pub default_route_settings: Option<AwsApiGatewayV2RouteSettings>, pub deployment_id: Option<String>, pub last_updated_date: Option<String>, pub route_settings: Option<AwsApiGatewayV2RouteSettings>, pub stage_name: Option<String>, pub stage_variables: Option<HashMap<String, String>>, pub access_log_settings: Option<AwsApiGatewayAccessLogSettings>, pub auto_deploy: bool, pub last_deployment_status_message: Option<String>, pub api_gateway_managed: bool,
}
Expand description

Contains information about a version 2 stage for Amazon API Gateway.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
client_certificate_id: Option<String>

The identifier of a client certificate for a stage. Supported only for WebSocket API calls.

created_date: Option<String>

Indicates when the stage was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

description: Option<String>

The description of the stage.

default_route_settings: Option<AwsApiGatewayV2RouteSettings>

Default route settings for the stage.

deployment_id: Option<String>

The identifier of the deployment that the stage is associated with.

last_updated_date: Option<String>

Indicates when the stage was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

route_settings: Option<AwsApiGatewayV2RouteSettings>

The route settings for the stage.

stage_name: Option<String>

The name of the stage.

stage_variables: Option<HashMap<String, String>>

A map that defines the stage variables for the stage.

Variable names can have alphanumeric and underscore characters.

Variable values can contain the following characters:

  • Uppercase and lowercase letters

  • Numbers

  • Special characters -._~:/?#&=,

access_log_settings: Option<AwsApiGatewayAccessLogSettings>

Information about settings for logging access for the stage.

auto_deploy: bool

Indicates whether updates to an API automatically trigger a new deployment.

last_deployment_status_message: Option<String>

The status of the last deployment of a stage. Supported only if the stage has automatic deployment enabled.

api_gateway_managed: bool

Indicates whether the stage is managed by API Gateway.

Implementations

The identifier of a client certificate for a stage. Supported only for WebSocket API calls.

Indicates when the stage was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

The description of the stage.

Default route settings for the stage.

The identifier of the deployment that the stage is associated with.

Indicates when the stage was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

The route settings for the stage.

The name of the stage.

A map that defines the stage variables for the stage.

Variable names can have alphanumeric and underscore characters.

Variable values can contain the following characters:

  • Uppercase and lowercase letters

  • Numbers

  • Special characters -._~:/?#&=,

Information about settings for logging access for the stage.

Indicates whether updates to an API automatically trigger a new deployment.

The status of the last deployment of a stage. Supported only if the stage has automatic deployment enabled.

Indicates whether the stage is managed by API Gateway.

Creates a new builder-style object to manufacture AwsApiGatewayV2StageDetails

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more