#[non_exhaustive]pub struct ModifyAccountInputBuilder { /* private fields */ }Expand description
A builder for ModifyAccountInput.
Implementations§
source§impl ModifyAccountInputBuilder
impl ModifyAccountInputBuilder
sourcepub fn dedicated_tenancy_support(
self,
input: DedicatedTenancySupportEnum,
) -> Self
pub fn dedicated_tenancy_support( self, input: DedicatedTenancySupportEnum, ) -> Self
The status of BYOL.
sourcepub fn set_dedicated_tenancy_support(
self,
input: Option<DedicatedTenancySupportEnum>,
) -> Self
pub fn set_dedicated_tenancy_support( self, input: Option<DedicatedTenancySupportEnum>, ) -> Self
The status of BYOL.
sourcepub fn get_dedicated_tenancy_support(
&self,
) -> &Option<DedicatedTenancySupportEnum>
pub fn get_dedicated_tenancy_support( &self, ) -> &Option<DedicatedTenancySupportEnum>
The status of BYOL.
sourcepub fn dedicated_tenancy_management_cidr_range(
self,
input: impl Into<String>,
) -> Self
pub fn dedicated_tenancy_management_cidr_range( self, input: impl Into<String>, ) -> Self
The IP address range, specified as an IPv4 CIDR block, for the management network interface. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block). The CIDR block size must be /16 (for example, 203.0.113.25/16). It must also be specified as available by the ListAvailableManagementCidrRanges operation.
sourcepub fn set_dedicated_tenancy_management_cidr_range(
self,
input: Option<String>,
) -> Self
pub fn set_dedicated_tenancy_management_cidr_range( self, input: Option<String>, ) -> Self
The IP address range, specified as an IPv4 CIDR block, for the management network interface. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block). The CIDR block size must be /16 (for example, 203.0.113.25/16). It must also be specified as available by the ListAvailableManagementCidrRanges operation.
sourcepub fn get_dedicated_tenancy_management_cidr_range(&self) -> &Option<String>
pub fn get_dedicated_tenancy_management_cidr_range(&self) -> &Option<String>
The IP address range, specified as an IPv4 CIDR block, for the management network interface. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block). The CIDR block size must be /16 (for example, 203.0.113.25/16). It must also be specified as available by the ListAvailableManagementCidrRanges operation.
sourcepub fn build(self) -> Result<ModifyAccountInput, BuildError>
pub fn build(self) -> Result<ModifyAccountInput, BuildError>
Consumes the builder and constructs a ModifyAccountInput.
source§impl ModifyAccountInputBuilder
impl ModifyAccountInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyAccountOutput, SdkError<ModifyAccountError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyAccountOutput, SdkError<ModifyAccountError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyAccountInputBuilder
impl Clone for ModifyAccountInputBuilder
source§fn clone(&self) -> ModifyAccountInputBuilder
fn clone(&self) -> ModifyAccountInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ModifyAccountInputBuilder
impl Debug for ModifyAccountInputBuilder
source§impl Default for ModifyAccountInputBuilder
impl Default for ModifyAccountInputBuilder
source§fn default() -> ModifyAccountInputBuilder
fn default() -> ModifyAccountInputBuilder
source§impl PartialEq for ModifyAccountInputBuilder
impl PartialEq for ModifyAccountInputBuilder
source§fn eq(&self, other: &ModifyAccountInputBuilder) -> bool
fn eq(&self, other: &ModifyAccountInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModifyAccountInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyAccountInputBuilder
impl RefUnwindSafe for ModifyAccountInputBuilder
impl Send for ModifyAccountInputBuilder
impl Sync for ModifyAccountInputBuilder
impl Unpin for ModifyAccountInputBuilder
impl UnwindSafe for ModifyAccountInputBuilder
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