#[non_exhaustive]pub struct ModifyAccountInput {
pub dedicated_tenancy_support: Option<DedicatedTenancySupportEnum>,
pub dedicated_tenancy_management_cidr_range: Option<String>,
}
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.dedicated_tenancy_support: Option<DedicatedTenancySupportEnum>
The status of BYOL.
dedicated_tenancy_management_cidr_range: 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.
Implementations§
source§impl ModifyAccountInput
impl ModifyAccountInput
sourcepub fn dedicated_tenancy_support(&self) -> Option<&DedicatedTenancySupportEnum>
pub fn dedicated_tenancy_support(&self) -> Option<&DedicatedTenancySupportEnum>
The status of BYOL.
sourcepub fn dedicated_tenancy_management_cidr_range(&self) -> Option<&str>
pub fn dedicated_tenancy_management_cidr_range(&self) -> Option<&str>
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.
source§impl ModifyAccountInput
impl ModifyAccountInput
sourcepub fn builder() -> ModifyAccountInputBuilder
pub fn builder() -> ModifyAccountInputBuilder
Creates a new builder-style object to manufacture ModifyAccountInput
.
Trait Implementations§
source§impl Clone for ModifyAccountInput
impl Clone for ModifyAccountInput
source§fn clone(&self) -> ModifyAccountInput
fn clone(&self) -> ModifyAccountInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyAccountInput
impl Debug for ModifyAccountInput
source§impl PartialEq for ModifyAccountInput
impl PartialEq for ModifyAccountInput
source§fn eq(&self, other: &ModifyAccountInput) -> bool
fn eq(&self, other: &ModifyAccountInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyAccountInput
Auto Trait Implementations§
impl Freeze for ModifyAccountInput
impl RefUnwindSafe for ModifyAccountInput
impl Send for ModifyAccountInput
impl Sync for ModifyAccountInput
impl Unpin for ModifyAccountInput
impl UnwindSafe for ModifyAccountInput
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> 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