Class: Aws::EC2::Types::PrefixListId
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::PrefixListId
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes a prefix list ID.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description for the security group rule that references this prefix list ID.
-
#prefix_list_id ⇒ String
The ID of the prefix.
Instance Attribute Details
#description ⇒ String
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 ._-:/()#,@+=;{}!$*
57902 57903 57904 57905 57906 57907 |
# File 'lib/aws-sdk-ec2/types.rb', line 57902 class PrefixListId < Struct.new( :description, :prefix_list_id) SENSITIVE = [] include Aws::Structure end |
#prefix_list_id ⇒ String
The ID of the prefix.
57902 57903 57904 57905 57906 57907 |
# File 'lib/aws-sdk-ec2/types.rb', line 57902 class PrefixListId < Struct.new( :description, :prefix_list_id) SENSITIVE = [] include Aws::Structure end |