Class: Aws::ElasticLoadBalancing::Types::DeleteLoadBalancerPolicyInput

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

Overview

Note:

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

{
  load_balancer_name: "AccessPointName", # required
  policy_name: "PolicyName", # required
}

Contains the parameters for DeleteLoadBalancerPolicy.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


766
767
768
769
770
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 766

class DeleteLoadBalancerPolicyInput < Struct.new(
  :load_balancer_name,
  :policy_name)
  include Aws::Structure
end

#policy_nameString

The name of the policy.

Returns:

  • (String)


766
767
768
769
770
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 766

class DeleteLoadBalancerPolicyInput < Struct.new(
  :load_balancer_name,
  :policy_name)
  include Aws::Structure
end