Class: Aws::EC2::Types::PrefixListId

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

{
  description: "String",
  prefix_list_id: "String",
}

Describes a prefix list ID.

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description for the security group rule that references this prefix list ID.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@+=;{\}!$*

Returns:

  • (String)


28059
28060
28061
28062
28063
# File 'lib/aws-sdk-ec2/types.rb', line 28059

class PrefixListId < Struct.new(
  :description,
  :prefix_list_id)
  include Aws::Structure
end

#prefix_list_idString

The ID of the prefix.

Returns:

  • (String)


28059
28060
28061
28062
28063
# File 'lib/aws-sdk-ec2/types.rb', line 28059

class PrefixListId < Struct.new(
  :description,
  :prefix_list_id)
  include Aws::Structure
end