#[non_exhaustive]pub struct MoveByoipCidrToIpamInput {
pub dry_run: Option<bool>,
pub cidr: Option<String>,
pub ipam_pool_id: Option<String>,
pub ipam_pool_owner: 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.dry_run: Option<bool>A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
cidr: Option<String>The BYOIP CIDR.
ipam_pool_id: Option<String>The IPAM pool ID.
ipam_pool_owner: Option<String>The Amazon Web Services account ID of the owner of the IPAM pool.
Implementations§
source§impl MoveByoipCidrToIpamInput
impl MoveByoipCidrToIpamInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
sourcepub fn ipam_pool_id(&self) -> Option<&str>
pub fn ipam_pool_id(&self) -> Option<&str>
The IPAM pool ID.
sourcepub fn ipam_pool_owner(&self) -> Option<&str>
pub fn ipam_pool_owner(&self) -> Option<&str>
The Amazon Web Services account ID of the owner of the IPAM pool.
source§impl MoveByoipCidrToIpamInput
impl MoveByoipCidrToIpamInput
sourcepub fn builder() -> MoveByoipCidrToIpamInputBuilder
pub fn builder() -> MoveByoipCidrToIpamInputBuilder
Creates a new builder-style object to manufacture MoveByoipCidrToIpamInput.
Trait Implementations§
source§impl Clone for MoveByoipCidrToIpamInput
impl Clone for MoveByoipCidrToIpamInput
source§fn clone(&self) -> MoveByoipCidrToIpamInput
fn clone(&self) -> MoveByoipCidrToIpamInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MoveByoipCidrToIpamInput
impl Debug for MoveByoipCidrToIpamInput
source§impl PartialEq<MoveByoipCidrToIpamInput> for MoveByoipCidrToIpamInput
impl PartialEq<MoveByoipCidrToIpamInput> for MoveByoipCidrToIpamInput
source§fn eq(&self, other: &MoveByoipCidrToIpamInput) -> bool
fn eq(&self, other: &MoveByoipCidrToIpamInput) -> bool
self and other values to be equal, and is used
by ==.