#[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 ==
.