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