pub struct CreateManagedPrefixListRequest {
pub address_family: String,
pub client_token: Option<String>,
pub dry_run: Option<bool>,
pub entries: Option<Vec<AddPrefixListEntry>>,
pub max_entries: i64,
pub prefix_list_name: String,
pub tag_specifications: Option<Vec<TagSpecification>>,
}Fields§
§address_family: StringThe IP address type.
Valid Values: IPv4 | IPv6
client_token: Option<String>Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
Constraints: Up to 255 UTF-8 characters in length.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
entries: Option<Vec<AddPrefixListEntry>>One or more entries for the prefix list.
max_entries: i64The maximum number of entries for the prefix list.
prefix_list_name: StringA name for the prefix list.
Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws.
tag_specifications: Option<Vec<TagSpecification>>The tags to apply to the prefix list during creation.
Trait Implementations§
Source§impl Clone for CreateManagedPrefixListRequest
impl Clone for CreateManagedPrefixListRequest
Source§fn clone(&self) -> CreateManagedPrefixListRequest
fn clone(&self) -> CreateManagedPrefixListRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateManagedPrefixListRequest
impl Default for CreateManagedPrefixListRequest
Source§fn default() -> CreateManagedPrefixListRequest
fn default() -> CreateManagedPrefixListRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateManagedPrefixListRequest
impl PartialEq for CreateManagedPrefixListRequest
Source§fn eq(&self, other: &CreateManagedPrefixListRequest) -> bool
fn eq(&self, other: &CreateManagedPrefixListRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateManagedPrefixListRequest
Auto Trait Implementations§
impl Freeze for CreateManagedPrefixListRequest
impl RefUnwindSafe for CreateManagedPrefixListRequest
impl Send for CreateManagedPrefixListRequest
impl Sync for CreateManagedPrefixListRequest
impl Unpin for CreateManagedPrefixListRequest
impl UnwindSafe for CreateManagedPrefixListRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more