#[non_exhaustive]pub struct AwsApiGatewayStageDetails { /* private fields */ }Expand description
Provides information about a version 1 Amazon API Gateway stage.
Implementations
sourceimpl AwsApiGatewayStageDetails
impl AwsApiGatewayStageDetails
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The identifier of the deployment that the stage points to.
sourcepub fn client_certificate_id(&self) -> Option<&str>
pub fn client_certificate_id(&self) -> Option<&str>
The identifier of the client certificate for the stage.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the stage.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the stage.
sourcepub fn cache_cluster_enabled(&self) -> bool
pub fn cache_cluster_enabled(&self) -> bool
Indicates whether a cache cluster is enabled for the stage.
sourcepub fn cache_cluster_size(&self) -> Option<&str>
pub fn cache_cluster_size(&self) -> Option<&str>
If a cache cluster is enabled, the size of the cache cluster.
sourcepub fn cache_cluster_status(&self) -> Option<&str>
pub fn cache_cluster_status(&self) -> Option<&str>
If a cache cluster is enabled, the status of the cache cluster.
sourcepub fn method_settings(&self) -> Option<&[AwsApiGatewayMethodSettings]>
pub fn method_settings(&self) -> Option<&[AwsApiGatewayMethodSettings]>
Defines the method settings for the stage.
sourcepub fn variables(&self) -> Option<&HashMap<String, String>>
pub fn 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 documentation_version(&self) -> Option<&str>
pub fn documentation_version(&self) -> Option<&str>
The version of the API documentation that is associated with the stage.
sourcepub fn access_log_settings(&self) -> Option<&AwsApiGatewayAccessLogSettings>
pub fn access_log_settings(&self) -> Option<&AwsApiGatewayAccessLogSettings>
Settings for logging access for the stage.
sourcepub fn canary_settings(&self) -> Option<&AwsApiGatewayCanarySettings>
pub fn canary_settings(&self) -> Option<&AwsApiGatewayCanarySettings>
Information about settings for canary deployment in the stage.
sourcepub fn tracing_enabled(&self) -> bool
pub fn tracing_enabled(&self) -> bool
Indicates whether active tracing with X-Ray is enabled for the stage.
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 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 web_acl_arn(&self) -> Option<&str>
pub fn web_acl_arn(&self) -> Option<&str>
The ARN of the web ACL associated with the stage.
sourceimpl AwsApiGatewayStageDetails
impl AwsApiGatewayStageDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsApiGatewayStageDetails.
Trait Implementations
sourceimpl Clone for AwsApiGatewayStageDetails
impl Clone for AwsApiGatewayStageDetails
sourcefn clone(&self) -> AwsApiGatewayStageDetails
fn clone(&self) -> AwsApiGatewayStageDetails
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more