Class: Aws::EC2::Types::CreatePlacementGroupRequest

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

{
  dry_run: false,
  group_name: "String", # required
  strategy: "cluster", # required, accepts cluster
}

Contains the parameters for CreatePlacementGroup.

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


3327
3328
3329
3330
3331
3332
# File 'lib/aws-sdk-ec2/types.rb', line 3327

class CreatePlacementGroupRequest < Struct.new(
  :dry_run,
  :group_name,
  :strategy)
  include Aws::Structure
end

#group_nameString

A name for the placement group.

Constraints: Up to 255 ASCII characters

Returns:

  • (String)


3327
3328
3329
3330
3331
3332
# File 'lib/aws-sdk-ec2/types.rb', line 3327

class CreatePlacementGroupRequest < Struct.new(
  :dry_run,
  :group_name,
  :strategy)
  include Aws::Structure
end

#strategyString

The placement strategy.

Returns:

  • (String)


3327
3328
3329
3330
3331
3332
# File 'lib/aws-sdk-ec2/types.rb', line 3327

class CreatePlacementGroupRequest < Struct.new(
  :dry_run,
  :group_name,
  :strategy)
  include Aws::Structure
end