pub struct RestoreManagedPrefixListVersionRequest {
pub current_version: i64,
pub dry_run: Option<bool>,
pub prefix_list_id: String,
pub previous_version: i64,
}
Fields§
§current_version: i64
The current version number for the prefix list.
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
.
prefix_list_id: String
The ID of the prefix list.
previous_version: i64
The version to restore.
Trait Implementations§
Source§impl Clone for RestoreManagedPrefixListVersionRequest
impl Clone for RestoreManagedPrefixListVersionRequest
Source§fn clone(&self) -> RestoreManagedPrefixListVersionRequest
fn clone(&self) -> RestoreManagedPrefixListVersionRequest
Returns a copy 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 RestoreManagedPrefixListVersionRequest
impl Default for RestoreManagedPrefixListVersionRequest
Source§fn default() -> RestoreManagedPrefixListVersionRequest
fn default() -> RestoreManagedPrefixListVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for RestoreManagedPrefixListVersionRequest
impl PartialEq for RestoreManagedPrefixListVersionRequest
Source§fn eq(&self, other: &RestoreManagedPrefixListVersionRequest) -> bool
fn eq(&self, other: &RestoreManagedPrefixListVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RestoreManagedPrefixListVersionRequest
Auto Trait Implementations§
impl Freeze for RestoreManagedPrefixListVersionRequest
impl RefUnwindSafe for RestoreManagedPrefixListVersionRequest
impl Send for RestoreManagedPrefixListVersionRequest
impl Sync for RestoreManagedPrefixListVersionRequest
impl Unpin for RestoreManagedPrefixListVersionRequest
impl UnwindSafe for RestoreManagedPrefixListVersionRequest
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