Class: Aws::EC2::Types::CreateSecurityGroupRequest

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

{
  description: "String", # required
  group_name: "String", # required
  vpc_id: "String",
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description for the security group. This is informational only.

Constraints: Up to 255 characters in length

Constraints for EC2-Classic: ASCII characters

Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@+=&;{\}!$*

Returns:

  • (String)


6225
6226
6227
6228
6229
6230
6231
# File 'lib/aws-sdk-ec2/types.rb', line 6225

class CreateSecurityGroupRequest < Struct.new(
  :description,
  :group_name,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#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)


6225
6226
6227
6228
6229
6230
6231
# File 'lib/aws-sdk-ec2/types.rb', line 6225

class CreateSecurityGroupRequest < Struct.new(
  :description,
  :group_name,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#group_nameString

The name of the security group.

Constraints: Up to 255 characters in length. Cannot start with ‘sg-`.

Constraints for EC2-Classic: ASCII characters

Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@+=&amp;;{\}!$*

Returns:

  • (String)


6225
6226
6227
6228
6229
6230
6231
# File 'lib/aws-sdk-ec2/types.rb', line 6225

class CreateSecurityGroupRequest < Struct.new(
  :description,
  :group_name,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#vpc_idString

[EC2-VPC] The ID of the VPC. Required for EC2-VPC.

Returns:

  • (String)


6225
6226
6227
6228
6229
6230
6231
# File 'lib/aws-sdk-ec2/types.rb', line 6225

class CreateSecurityGroupRequest < Struct.new(
  :description,
  :group_name,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end