Class: Aws::AutoScaling::Types::DeletePolicyType

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

Overview

Note:

When making an API call, you may pass DeletePolicyType data as a hash:

{
  auto_scaling_group_name: "ResourceName",
  policy_name: "ResourceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1421
1422
1423
1424
1425
# File 'lib/aws-sdk-autoscaling/types.rb', line 1421

class DeletePolicyType < Struct.new(
  :auto_scaling_group_name,
  :policy_name)
  include Aws::Structure
end

#policy_nameString

The name or Amazon Resource Name (ARN) of the policy.

Returns:

  • (String)


1421
1422
1423
1424
1425
# File 'lib/aws-sdk-autoscaling/types.rb', line 1421

class DeletePolicyType < Struct.new(
  :auto_scaling_group_name,
  :policy_name)
  include Aws::Structure
end