Class: Aws::EC2::Types::SecurityGroupIdentifier

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

Overview

Describes a security group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_idString

The ID of the security group.

Returns:

  • (String)


60355
60356
60357
60358
60359
60360
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 60355

class SecurityGroupIdentifier < Struct.new(
  :group_id,
  :group_name)
  SENSITIVE = []
  include Aws::Structure
end

#group_nameString

The name of the security group.

Returns:

  • (String)


60355
60356
60357
60358
60359
60360
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 60355

class SecurityGroupIdentifier < Struct.new(
  :group_id,
  :group_name)
  SENSITIVE = []
  include Aws::Structure
end