Class: Aws::AppRunner::Types::DeleteAutoScalingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::DeleteAutoScalingConfigurationRequest
- 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 delete.
-
#delete_all_revisions ⇒ Boolean
Set to
trueto delete all of the revisions associated with theAutoScalingConfigurationArnparameter value.
Instance Attribute Details
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.
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 deleted.
950 951 952 953 954 955 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 950 class DeleteAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :delete_all_revisions) SENSITIVE = [] include Aws::Structure end |
#delete_all_revisions ⇒ Boolean
Set to true to delete all of the revisions associated with the
AutoScalingConfigurationArn parameter value.
When DeleteAllRevisions is set to true, the only valid value for
the Amazon Resource Name (ARN) is a partial ARN ending with:
.../name.
950 951 952 953 954 955 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 950 class DeleteAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :delete_all_revisions) SENSITIVE = [] include Aws::Structure end |