#[non_exhaustive]pub struct AwsApiGatewayV2StageDetails { /* private fields */ }
Expand description
Contains information about a version 2 stage for Amazon API Gateway.
Implementations§
source§impl AwsApiGatewayV2StageDetails
impl AwsApiGatewayV2StageDetails
sourcepub fn client_certificate_id(&self) -> Option<&str>
pub fn client_certificate_id(&self) -> Option<&str>
The identifier of a client certificate for a stage. Supported only for WebSocket API calls.
sourcepub fn created_date(&self) -> Option<&str>
pub fn created_date(&self) -> Option<&str>
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
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the stage.
sourcepub fn default_route_settings(&self) -> Option<&AwsApiGatewayV2RouteSettings>
pub fn default_route_settings(&self) -> Option<&AwsApiGatewayV2RouteSettings>
Default route settings for the stage.
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The identifier of the deployment that the stage is associated with.
sourcepub fn last_updated_date(&self) -> Option<&str>
pub fn last_updated_date(&self) -> Option<&str>
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
.
sourcepub fn route_settings(&self) -> Option<&AwsApiGatewayV2RouteSettings>
pub fn route_settings(&self) -> Option<&AwsApiGatewayV2RouteSettings>
The route settings for the stage.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the stage.
sourcepub fn stage_variables(&self) -> Option<&HashMap<String, String>>
pub fn stage_variables(&self) -> 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 -._~:/?#&=,
sourcepub fn access_log_settings(&self) -> Option<&AwsApiGatewayAccessLogSettings>
pub fn access_log_settings(&self) -> Option<&AwsApiGatewayAccessLogSettings>
Information about settings for logging access for the stage.
sourcepub fn auto_deploy(&self) -> bool
pub fn auto_deploy(&self) -> bool
Indicates whether updates to an API automatically trigger a new deployment.
sourcepub fn last_deployment_status_message(&self) -> Option<&str>
pub fn last_deployment_status_message(&self) -> Option<&str>
The status of the last deployment of a stage. Supported only if the stage has automatic deployment enabled.
sourcepub fn api_gateway_managed(&self) -> bool
pub fn api_gateway_managed(&self) -> bool
Indicates whether the stage is managed by API Gateway.
source§impl AwsApiGatewayV2StageDetails
impl AwsApiGatewayV2StageDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsApiGatewayV2StageDetails
.
Trait Implementations§
source§impl Clone for AwsApiGatewayV2StageDetails
impl Clone for AwsApiGatewayV2StageDetails
source§fn clone(&self) -> AwsApiGatewayV2StageDetails
fn clone(&self) -> AwsApiGatewayV2StageDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsApiGatewayV2StageDetails
impl Debug for AwsApiGatewayV2StageDetails
source§impl PartialEq<AwsApiGatewayV2StageDetails> for AwsApiGatewayV2StageDetails
impl PartialEq<AwsApiGatewayV2StageDetails> for AwsApiGatewayV2StageDetails
source§fn eq(&self, other: &AwsApiGatewayV2StageDetails) -> bool
fn eq(&self, other: &AwsApiGatewayV2StageDetails) -> bool
self
and other
values to be equal, and is used
by ==
.