Struct aws_sdk_fsx::operation::delete_backup::DeleteBackupInput
source · #[non_exhaustive]pub struct DeleteBackupInput {
pub backup_id: Option<String>,
pub client_request_token: Option<String>,
}Expand description
The request object for the DeleteBackup operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.backup_id: Option<String>The ID of the backup that you want to delete.
client_request_token: Option<String>A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This parameter is automatically filled on your behalf when using the CLI or SDK.
Implementations§
source§impl DeleteBackupInput
impl DeleteBackupInput
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This parameter is automatically filled on your behalf when using the CLI or SDK.
source§impl DeleteBackupInput
impl DeleteBackupInput
sourcepub fn builder() -> DeleteBackupInputBuilder
pub fn builder() -> DeleteBackupInputBuilder
Creates a new builder-style object to manufacture DeleteBackupInput.
Trait Implementations§
source§impl Clone for DeleteBackupInput
impl Clone for DeleteBackupInput
source§fn clone(&self) -> DeleteBackupInput
fn clone(&self) -> DeleteBackupInput
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 Debug for DeleteBackupInput
impl Debug for DeleteBackupInput
source§impl PartialEq for DeleteBackupInput
impl PartialEq for DeleteBackupInput
source§fn eq(&self, other: &DeleteBackupInput) -> bool
fn eq(&self, other: &DeleteBackupInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteBackupInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteBackupInput
impl Send for DeleteBackupInput
impl Sync for DeleteBackupInput
impl Unpin for DeleteBackupInput
impl UnwindSafe for DeleteBackupInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.