#[non_exhaustive]pub struct CreateLegalHoldInput { /* private fields */ }
Implementations§
source§impl CreateLegalHoldInput
impl CreateLegalHoldInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
This is the string description of the legal hold.
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
This is a user-chosen string used to distinguish between otherwise identical calls. Retrying a successful request with the same idempotency token results in a success message with no action taken.
sourcepub fn recovery_point_selection(&self) -> Option<&RecoveryPointSelection>
pub fn recovery_point_selection(&self) -> Option<&RecoveryPointSelection>
This specifies criteria to assign a set of resources, such as resource types or backup vaults.
Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /.
source§impl CreateLegalHoldInput
impl CreateLegalHoldInput
sourcepub fn builder() -> CreateLegalHoldInputBuilder
pub fn builder() -> CreateLegalHoldInputBuilder
Creates a new builder-style object to manufacture CreateLegalHoldInput
.
source§impl CreateLegalHoldInput
impl CreateLegalHoldInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateLegalHold, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateLegalHold, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateLegalHold
>
Trait Implementations§
source§impl Clone for CreateLegalHoldInput
impl Clone for CreateLegalHoldInput
source§fn clone(&self) -> CreateLegalHoldInput
fn clone(&self) -> CreateLegalHoldInput
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 CreateLegalHoldInput
impl Debug for CreateLegalHoldInput
source§impl PartialEq<CreateLegalHoldInput> for CreateLegalHoldInput
impl PartialEq<CreateLegalHoldInput> for CreateLegalHoldInput
source§fn eq(&self, other: &CreateLegalHoldInput) -> bool
fn eq(&self, other: &CreateLegalHoldInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateLegalHoldInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateLegalHoldInput
impl Send for CreateLegalHoldInput
impl Sync for CreateLegalHoldInput
impl Unpin for CreateLegalHoldInput
impl UnwindSafe for CreateLegalHoldInput
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