Class: Aws::EC2::Types::InstanceEventWindowAssociationRequest

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

Overview

One or more targets associated with the specified event window. Only one type of target (instance ID, instance tag, or Dedicated Host ID) can be associated with an event window.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dedicated_host_idsArray<String>

The IDs of the Dedicated Hosts to associate with the event window.

Returns:

  • (Array<String>)


42480
42481
42482
42483
42484
42485
42486
# File 'lib/aws-sdk-ec2/types.rb', line 42480

class InstanceEventWindowAssociationRequest < Struct.new(
  :instance_ids,
  :instance_tags,
  :dedicated_host_ids)
  SENSITIVE = []
  include Aws::Structure
end

#instance_idsArray<String>

The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can’t specify the Instance ID parameter; you must use the Dedicated Host ID parameter.

Returns:

  • (Array<String>)


42480
42481
42482
42483
42484
42485
42486
# File 'lib/aws-sdk-ec2/types.rb', line 42480

class InstanceEventWindowAssociationRequest < Struct.new(
  :instance_ids,
  :instance_tags,
  :dedicated_host_ids)
  SENSITIVE = []
  include Aws::Structure
end

#instance_tagsArray<Types::Tag>

The instance tags to associate with the event window. Any instances associated with the tags will be associated with the event window.

Returns:



42480
42481
42482
42483
42484
42485
42486
# File 'lib/aws-sdk-ec2/types.rb', line 42480

class InstanceEventWindowAssociationRequest < Struct.new(
  :instance_ids,
  :instance_tags,
  :dedicated_host_ids)
  SENSITIVE = []
  include Aws::Structure
end