Class: Aws::AppRunner::Types::UpdateDefaultAutoScalingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::UpdateDefaultAutoScalingConfigurationRequest
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to set as the default.
Instance Attribute Details
#auto_scaling_configuration_arn ⇒ 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.
2879 2880 2881 2882 2883 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2879 class UpdateDefaultAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn) SENSITIVE = [] include Aws::Structure end |