Struct rusoto_ec2::PrefixListId[][src]

pub struct PrefixListId {
    pub description: Option<String>,
    pub prefix_list_id: Option<String>,
}

[EC2-VPC only] The ID of the prefix.

Fields

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 ._-:/()#,@[]+=;{}!$*

The ID of the prefix.

Trait Implementations

impl Default for PrefixListId
[src]

Returns the "default value" for a type. Read more

impl Debug for PrefixListId
[src]

Formats the value using the given formatter. Read more

impl Clone for PrefixListId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PrefixListId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations