Class: Aws::EC2::Types::PrefixListId
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::PrefixListId
- Defined in:
- gems/aws-sdk-ec2/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 ._-:/()#,@[]+=;{}!$*
58127 58128 58129 58130 58131 58132 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58127 class PrefixListId < Struct.new( :description, :prefix_list_id) SENSITIVE = [] include Aws::Structure end |
#prefix_list_id ⇒ String
The ID of the prefix.
58127 58128 58129 58130 58131 58132 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58127 class PrefixListId < Struct.new( :description, :prefix_list_id) SENSITIVE = [] include Aws::Structure end |