Class: Aws::EC2::Types::DeregisterInstanceTagAttributeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DeregisterInstanceTagAttributeRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Information about the tag keys to deregister for the current Region.
You can either specify individual tag keys or deregister all tag keys
in the current Region. You must specify either
IncludeAllTagsOfInstance or InstanceTagKeys in the request
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_all_tags_of_instance ⇒ Boolean
Indicates whether to deregister all tag keys in the current Region.
-
#instance_tag_keys ⇒ Array<String>
Information about the tag keys to deregister.
Instance Attribute Details
#include_all_tags_of_instance ⇒ Boolean
Indicates whether to deregister all tag keys in the current Region.
Specify false to deregister all tag keys.
20758 20759 20760 20761 20762 20763 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 20758 class DeregisterInstanceTagAttributeRequest < Struct.new( :include_all_tags_of_instance, :instance_tag_keys) SENSITIVE = [] include Aws::Structure end |
#instance_tag_keys ⇒ Array<String>
Information about the tag keys to deregister.
20758 20759 20760 20761 20762 20763 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 20758 class DeregisterInstanceTagAttributeRequest < Struct.new( :include_all_tags_of_instance, :instance_tag_keys) SENSITIVE = [] include Aws::Structure end |