Class: Aws::AppRunner::Types::DeleteAutoScalingConfigurationRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apprunner/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_configuration_arnString

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.

Returns:

  • (String)


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_revisionsBoolean

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`.

Returns:

  • (Boolean)


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