#[non_exhaustive]pub struct DeleteAnalysisInput {
pub aws_account_id: Option<String>,
pub analysis_id: Option<String>,
pub recovery_window_in_days: Option<i64>,
pub force_delete_without_recovery: Option<bool>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID of the Amazon Web Services account where you want to delete an analysis.
analysis_id: Option<String>The ID of the analysis that you're deleting.
recovery_window_in_days: Option<i64>A value that specifies the number of days that Amazon QuickSight waits before it deletes the analysis. You can't use this parameter with the ForceDeleteWithoutRecovery option in the same API call. The default value is 30.
force_delete_without_recovery: Option<bool>This option defaults to the value NoForceDeleteWithoutRecovery. To immediately delete the analysis, add the ForceDeleteWithoutRecovery option. You can't restore an analysis after it's deleted.
Implementations§
source§impl DeleteAnalysisInput
impl DeleteAnalysisInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account where you want to delete an analysis.
sourcepub fn analysis_id(&self) -> Option<&str>
pub fn analysis_id(&self) -> Option<&str>
The ID of the analysis that you're deleting.
sourcepub fn recovery_window_in_days(&self) -> Option<i64>
pub fn recovery_window_in_days(&self) -> Option<i64>
A value that specifies the number of days that Amazon QuickSight waits before it deletes the analysis. You can't use this parameter with the ForceDeleteWithoutRecovery option in the same API call. The default value is 30.
sourcepub fn force_delete_without_recovery(&self) -> Option<bool>
pub fn force_delete_without_recovery(&self) -> Option<bool>
This option defaults to the value NoForceDeleteWithoutRecovery. To immediately delete the analysis, add the ForceDeleteWithoutRecovery option. You can't restore an analysis after it's deleted.
source§impl DeleteAnalysisInput
impl DeleteAnalysisInput
sourcepub fn builder() -> DeleteAnalysisInputBuilder
pub fn builder() -> DeleteAnalysisInputBuilder
Creates a new builder-style object to manufacture DeleteAnalysisInput.
Trait Implementations§
source§impl Clone for DeleteAnalysisInput
impl Clone for DeleteAnalysisInput
source§fn clone(&self) -> DeleteAnalysisInput
fn clone(&self) -> DeleteAnalysisInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteAnalysisInput
impl Debug for DeleteAnalysisInput
source§impl PartialEq for DeleteAnalysisInput
impl PartialEq for DeleteAnalysisInput
source§fn eq(&self, other: &DeleteAnalysisInput) -> bool
fn eq(&self, other: &DeleteAnalysisInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteAnalysisInput
Auto Trait Implementations§
impl Freeze for DeleteAnalysisInput
impl RefUnwindSafe for DeleteAnalysisInput
impl Send for DeleteAnalysisInput
impl Sync for DeleteAnalysisInput
impl Unpin for DeleteAnalysisInput
impl UnwindSafe for DeleteAnalysisInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more