#[non_exhaustive]pub struct ModifyIpamResourceCidrInput {
pub dry_run: Option<bool>,
pub resource_id: Option<String>,
pub resource_cidr: Option<String>,
pub resource_region: Option<String>,
pub current_ipam_scope_id: Option<String>,
pub destination_ipam_scope_id: Option<String>,
pub monitored: Option<bool>,
}
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
.
resource_id: Option<String>
The ID of the resource you want to modify.
resource_cidr: Option<String>
The CIDR of the resource you want to modify.
resource_region: Option<String>
The Amazon Web Services Region of the resource you want to modify.
current_ipam_scope_id: Option<String>
The ID of the current scope that the resource CIDR is in.
destination_ipam_scope_id: Option<String>
The ID of the scope you want to transfer the resource CIDR to.
monitored: Option<bool>
Determines if the resource is monitored by IPAM. If a resource is monitored, the resource is discovered by IPAM and you can view details about the resource’s CIDR.
Implementations§
source§impl ModifyIpamResourceCidrInput
impl ModifyIpamResourceCidrInput
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 resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The ID of the resource you want to modify.
sourcepub fn resource_cidr(&self) -> Option<&str>
pub fn resource_cidr(&self) -> Option<&str>
The CIDR of the resource you want to modify.
sourcepub fn resource_region(&self) -> Option<&str>
pub fn resource_region(&self) -> Option<&str>
The Amazon Web Services Region of the resource you want to modify.
sourcepub fn current_ipam_scope_id(&self) -> Option<&str>
pub fn current_ipam_scope_id(&self) -> Option<&str>
The ID of the current scope that the resource CIDR is in.
sourcepub fn destination_ipam_scope_id(&self) -> Option<&str>
pub fn destination_ipam_scope_id(&self) -> Option<&str>
The ID of the scope you want to transfer the resource CIDR to.
source§impl ModifyIpamResourceCidrInput
impl ModifyIpamResourceCidrInput
sourcepub fn builder() -> ModifyIpamResourceCidrInputBuilder
pub fn builder() -> ModifyIpamResourceCidrInputBuilder
Creates a new builder-style object to manufacture ModifyIpamResourceCidrInput
.
Trait Implementations§
source§impl Clone for ModifyIpamResourceCidrInput
impl Clone for ModifyIpamResourceCidrInput
source§fn clone(&self) -> ModifyIpamResourceCidrInput
fn clone(&self) -> ModifyIpamResourceCidrInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyIpamResourceCidrInput
impl Debug for ModifyIpamResourceCidrInput
source§impl PartialEq<ModifyIpamResourceCidrInput> for ModifyIpamResourceCidrInput
impl PartialEq<ModifyIpamResourceCidrInput> for ModifyIpamResourceCidrInput
source§fn eq(&self, other: &ModifyIpamResourceCidrInput) -> bool
fn eq(&self, other: &ModifyIpamResourceCidrInput) -> bool
self
and other
values to be equal, and is used
by ==
.