Struct aws_sdk_apigatewayv2::output::CreateStageOutput
source · #[non_exhaustive]pub struct CreateStageOutput { /* private fields */ }Implementations§
source§impl CreateStageOutput
impl CreateStageOutput
sourcepub fn access_log_settings(&self) -> Option<&AccessLogSettings>
pub fn access_log_settings(&self) -> Option<&AccessLogSettings>
Settings for logging access in this stage.
sourcepub fn api_gateway_managed(&self) -> bool
pub fn api_gateway_managed(&self) -> bool
Specifies whether a stage is managed by API Gateway. If you created an API using quick create, the $default stage is managed by API Gateway. You can't modify the $default stage.
sourcepub fn auto_deploy(&self) -> bool
pub fn auto_deploy(&self) -> bool
Specifies whether updates to an API automatically trigger a new deployment. The default value is false.
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 APIs.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The timestamp when the stage was created.
sourcepub fn default_route_settings(&self) -> Option<&RouteSettings>
pub fn default_route_settings(&self) -> Option<&RouteSettings>
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. Can't be updated if autoDeploy is enabled.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the stage.
sourcepub fn last_deployment_status_message(&self) -> Option<&str>
pub fn last_deployment_status_message(&self) -> Option<&str>
Describes the status of the last deployment of a stage. Supported only for stages with autoDeploy enabled.
sourcepub fn last_updated_date(&self) -> Option<&DateTime>
pub fn last_updated_date(&self) -> Option<&DateTime>
The timestamp when the stage was last updated.
sourcepub fn route_settings(&self) -> Option<&HashMap<String, RouteSettings>>
pub fn route_settings(&self) -> Option<&HashMap<String, RouteSettings>>
Route settings for the stage, by routeKey.
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 a stage resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+.
The collection of tags. Each tag element is associated with a given resource.
source§impl CreateStageOutput
impl CreateStageOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateStageOutput.
Trait Implementations§
source§impl Clone for CreateStageOutput
impl Clone for CreateStageOutput
source§fn clone(&self) -> CreateStageOutput
fn clone(&self) -> CreateStageOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more