Class: Aws::EC2::Types::GroupIdentifier

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

{
  group_name: "String",
  group_id: "String",
}

Describes a security group.

Instance Attribute Summary collapse

Instance Attribute Details

#group_idString

The ID of the security group.

Returns:

  • (String)


20447
20448
20449
20450
20451
# File 'lib/aws-sdk-ec2/types.rb', line 20447

class GroupIdentifier < Struct.new(
  :group_name,
  :group_id)
  include Aws::Structure
end

#group_nameString

The name of the security group.

Returns:

  • (String)


20447
20448
20449
20450
20451
# File 'lib/aws-sdk-ec2/types.rb', line 20447

class GroupIdentifier < Struct.new(
  :group_name,
  :group_id)
  include Aws::Structure
end