Struct aws_sdk_backup::operation::delete_backup_vault_access_policy::builders::DeleteBackupVaultAccessPolicyInputBuilder
source · #[non_exhaustive]pub struct DeleteBackupVaultAccessPolicyInputBuilder { /* private fields */ }
Expand description
A builder for DeleteBackupVaultAccessPolicyInput
.
Implementations§
source§impl DeleteBackupVaultAccessPolicyInputBuilder
impl DeleteBackupVaultAccessPolicyInputBuilder
sourcepub fn backup_vault_name(self, input: impl Into<String>) -> Self
pub fn backup_vault_name(self, input: impl Into<String>) -> Self
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
This field is required.sourcepub fn set_backup_vault_name(self, input: Option<String>) -> Self
pub fn set_backup_vault_name(self, input: Option<String>) -> Self
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
sourcepub fn get_backup_vault_name(&self) -> &Option<String>
pub fn get_backup_vault_name(&self) -> &Option<String>
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
sourcepub fn build(self) -> Result<DeleteBackupVaultAccessPolicyInput, BuildError>
pub fn build(self) -> Result<DeleteBackupVaultAccessPolicyInput, BuildError>
Consumes the builder and constructs a DeleteBackupVaultAccessPolicyInput
.
source§impl DeleteBackupVaultAccessPolicyInputBuilder
impl DeleteBackupVaultAccessPolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteBackupVaultAccessPolicyOutput, SdkError<DeleteBackupVaultAccessPolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteBackupVaultAccessPolicyOutput, SdkError<DeleteBackupVaultAccessPolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteBackupVaultAccessPolicyInputBuilder
impl Clone for DeleteBackupVaultAccessPolicyInputBuilder
source§fn clone(&self) -> DeleteBackupVaultAccessPolicyInputBuilder
fn clone(&self) -> DeleteBackupVaultAccessPolicyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DeleteBackupVaultAccessPolicyInputBuilder
impl Default for DeleteBackupVaultAccessPolicyInputBuilder
source§fn default() -> DeleteBackupVaultAccessPolicyInputBuilder
fn default() -> DeleteBackupVaultAccessPolicyInputBuilder
source§impl PartialEq for DeleteBackupVaultAccessPolicyInputBuilder
impl PartialEq for DeleteBackupVaultAccessPolicyInputBuilder
source§fn eq(&self, other: &DeleteBackupVaultAccessPolicyInputBuilder) -> bool
fn eq(&self, other: &DeleteBackupVaultAccessPolicyInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteBackupVaultAccessPolicyInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteBackupVaultAccessPolicyInputBuilder
impl RefUnwindSafe for DeleteBackupVaultAccessPolicyInputBuilder
impl Send for DeleteBackupVaultAccessPolicyInputBuilder
impl Sync for DeleteBackupVaultAccessPolicyInputBuilder
impl Unpin for DeleteBackupVaultAccessPolicyInputBuilder
impl UnwindSafe for DeleteBackupVaultAccessPolicyInputBuilder
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