Class: Aws::EC2::Types::RegisterInstanceTagAttributeRequest

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

Overview

Information about the tag keys to register for the current Region. You can either specify individual tag keys or register 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

Instance Attribute Details

#include_all_tags_of_instanceBoolean

Indicates whether to register all tag keys in the current Region. Specify ‘true` to register all tag keys.

Returns:

  • (Boolean)


54398
54399
54400
54401
54402
54403
# File 'lib/aws-sdk-ec2/types.rb', line 54398

class RegisterInstanceTagAttributeRequest < Struct.new(
  :include_all_tags_of_instance,
  :instance_tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#instance_tag_keysArray<String>

The tag keys to register.

Returns:

  • (Array<String>)


54398
54399
54400
54401
54402
54403
# File 'lib/aws-sdk-ec2/types.rb', line 54398

class RegisterInstanceTagAttributeRequest < Struct.new(
  :include_all_tags_of_instance,
  :instance_tag_keys)
  SENSITIVE = []
  include Aws::Structure
end