Class: Aws::AppRunner::Types::DeleteAutoScalingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::DeleteAutoScalingConfigurationRequest
- Includes:
- Structure
- Defined in:
- 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 ‘true` to delete all of the revisions associated with the `AutoScalingConfigurationArn` parameter 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.
949 950 951 952 953 954 |
# File 'lib/aws-sdk-apprunner/types.rb', line 949 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`.
949 950 951 952 953 954 |
# File 'lib/aws-sdk-apprunner/types.rb', line 949 class DeleteAutoScalingConfigurationRequest < Struct.new( :auto_scaling_configuration_arn, :delete_all_revisions) SENSITIVE = [] include Aws::Structure end |