Class: Aws::EC2::Types::ModifyInstancePlacementRequest

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

Overview

Note:

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

{
  affinity: "default", # accepts default, host
  group_name: "String",
  host_id: "String",
  instance_id: "String", # required
  tenancy: "dedicated", # accepts dedicated, host
  partition_number: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#affinityString

The affinity setting for the instance.

Returns:

  • (String)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end

#group_nameString

The name of the placement group in which to place the instance. For spread placement groups, the instance must have a tenancy of ‘default`. For cluster and partition placement groups, the instance must have a tenancy of `default` or `dedicated`.

To remove an instance from a placement group, specify an empty string (“”).

Returns:

  • (String)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end

#host_idString

The ID of the Dedicated Host with which to associate the instance.

Returns:

  • (String)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end

#instance_idString

The ID of the instance that you are modifying.

Returns:

  • (String)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end

#partition_numberInteger

Reserved for future use.

Returns:

  • (Integer)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end

#tenancyString

The tenancy for the instance.

Returns:

  • (String)


25977
25978
25979
25980
25981
25982
25983
25984
25985
# File 'lib/aws-sdk-ec2/types.rb', line 25977

class ModifyInstancePlacementRequest < Struct.new(
  :affinity,
  :group_name,
  :host_id,
  :instance_id,
  :tenancy,
  :partition_number)
  include Aws::Structure
end