Struct aws_sdk_ec2::operation::modify_ipam::ModifyIpamInput
source · #[non_exhaustive]pub struct ModifyIpamInput {
pub dry_run: Option<bool>,
pub ipam_id: Option<String>,
pub description: Option<String>,
pub add_operating_regions: Option<Vec<AddIpamOperatingRegion>>,
pub remove_operating_regions: Option<Vec<RemoveIpamOperatingRegion>>,
}
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
.
ipam_id: Option<String>
The ID of the IPAM you want to modify.
description: Option<String>
The description of the IPAM you want to modify.
add_operating_regions: Option<Vec<AddIpamOperatingRegion>>
Choose the operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.
For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.
remove_operating_regions: Option<Vec<RemoveIpamOperatingRegion>>
The operating Regions to remove.
Implementations§
source§impl ModifyIpamInput
impl ModifyIpamInput
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 description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the IPAM you want to modify.
sourcepub fn add_operating_regions(&self) -> Option<&[AddIpamOperatingRegion]>
pub fn add_operating_regions(&self) -> Option<&[AddIpamOperatingRegion]>
Choose the operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.
For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide.
sourcepub fn remove_operating_regions(&self) -> Option<&[RemoveIpamOperatingRegion]>
pub fn remove_operating_regions(&self) -> Option<&[RemoveIpamOperatingRegion]>
The operating Regions to remove.
source§impl ModifyIpamInput
impl ModifyIpamInput
sourcepub fn builder() -> ModifyIpamInputBuilder
pub fn builder() -> ModifyIpamInputBuilder
Creates a new builder-style object to manufacture ModifyIpamInput
.
Trait Implementations§
source§impl Clone for ModifyIpamInput
impl Clone for ModifyIpamInput
source§fn clone(&self) -> ModifyIpamInput
fn clone(&self) -> ModifyIpamInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyIpamInput
impl Debug for ModifyIpamInput
source§impl PartialEq<ModifyIpamInput> for ModifyIpamInput
impl PartialEq<ModifyIpamInput> for ModifyIpamInput
source§fn eq(&self, other: &ModifyIpamInput) -> bool
fn eq(&self, other: &ModifyIpamInput) -> bool
self
and other
values to be equal, and is used
by ==
.