Class: Aws::ElasticLoadBalancing::Types::RemoveTagsInput

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 RemoveTagsInput data as a hash:

{
  load_balancer_names: ["AccessPointName"], # required
  tags: [ # required
    {
      key: "TagKey",
    },
  ],
}

Contains the parameters for RemoveTags.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_namesArray<String>

The name of the load balancer. You can specify a maximum of one load balancer name.

Returns:

  • (Array<String>)


1954
1955
1956
1957
1958
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1954

class RemoveTagsInput < Struct.new(
  :load_balancer_names,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::TagKeyOnly>

The list of tag keys to remove.

Returns:



1954
1955
1956
1957
1958
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1954

class RemoveTagsInput < Struct.new(
  :load_balancer_names,
  :tags)
  include Aws::Structure
end