Struct aws_sdk_apprunner::operation::update_default_auto_scaling_configuration::builders::UpdateDefaultAutoScalingConfigurationFluentBuilder
source · pub struct UpdateDefaultAutoScalingConfigurationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDefaultAutoScalingConfiguration
.
Update an auto scaling configuration to be the default. The existing default auto scaling configuration will be set to non-default automatically.
Implementations§
source§impl UpdateDefaultAutoScalingConfigurationFluentBuilder
impl UpdateDefaultAutoScalingConfigurationFluentBuilder
sourcepub fn as_input(&self) -> &UpdateDefaultAutoScalingConfigurationInputBuilder
pub fn as_input(&self) -> &UpdateDefaultAutoScalingConfigurationInputBuilder
Access the UpdateDefaultAutoScalingConfiguration as a reference.
sourcepub async fn send(
self
) -> Result<UpdateDefaultAutoScalingConfigurationOutput, SdkError<UpdateDefaultAutoScalingConfigurationError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateDefaultAutoScalingConfigurationOutput, SdkError<UpdateDefaultAutoScalingConfigurationError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateDefaultAutoScalingConfigurationOutput, UpdateDefaultAutoScalingConfigurationError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateDefaultAutoScalingConfigurationOutput, UpdateDefaultAutoScalingConfigurationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn auto_scaling_configuration_arn(self, input: impl Into<String>) -> Self
pub fn auto_scaling_configuration_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to set as the default.
The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either .../name
or .../name/revision
. If a revision isn't specified, the latest active revision is set as the default.
sourcepub fn set_auto_scaling_configuration_arn(self, input: Option<String>) -> Self
pub fn set_auto_scaling_configuration_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to set as the default.
The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either .../name
or .../name/revision
. If a revision isn't specified, the latest active revision is set as the default.
sourcepub fn get_auto_scaling_configuration_arn(&self) -> &Option<String>
pub fn get_auto_scaling_configuration_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to set as the default.
The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either .../name
or .../name/revision
. If a revision isn't specified, the latest active revision is set as the default.
Trait Implementations§
source§impl Clone for UpdateDefaultAutoScalingConfigurationFluentBuilder
impl Clone for UpdateDefaultAutoScalingConfigurationFluentBuilder
source§fn clone(&self) -> UpdateDefaultAutoScalingConfigurationFluentBuilder
fn clone(&self) -> UpdateDefaultAutoScalingConfigurationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more