Class: Aws::AppRunner::Types::AutoScalingConfigurationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::AutoScalingConfigurationSummary
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Provides summary information about an App Runner automatic scaling configuration resource.
This type contains limited information about an auto scaling configuration. It includes only identification information, without configuration details. It's returned by the ListAutoScalingConfigurations action. Complete configuration information is returned by the CreateAutoScalingConfiguration, DescribeAutoScalingConfiguration, and DeleteAutoScalingConfiguration actions using the AutoScalingConfiguration type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of this auto scaling configuration.
-
#auto_scaling_configuration_name ⇒ String
The customer-provided auto scaling configuration name.
-
#auto_scaling_configuration_revision ⇒ Integer
The revision of this auto scaling configuration.
Instance Attribute Details
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of this auto scaling configuration.
229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 229 class AutoScalingConfigurationSummary < Struct.new( :auto_scaling_configuration_arn, :auto_scaling_configuration_name, :auto_scaling_configuration_revision) SENSITIVE = [] include Aws::Structure end |
#auto_scaling_configuration_name ⇒ String
The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.
229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 229 class AutoScalingConfigurationSummary < Struct.new( :auto_scaling_configuration_arn, :auto_scaling_configuration_name, :auto_scaling_configuration_revision) SENSITIVE = [] include Aws::Structure end |
#auto_scaling_configuration_revision ⇒ Integer
The revision of this auto scaling configuration. It's unique among
all the active configurations ("Status": "ACTIVE"
) with the same
AutoScalingConfigurationName
.
229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 229 class AutoScalingConfigurationSummary < Struct.new( :auto_scaling_configuration_arn, :auto_scaling_configuration_name, :auto_scaling_configuration_revision) SENSITIVE = [] include Aws::Structure end |