pub struct VpcIpamResourceDiscoveryAssociationResult {
pub arn: Output<String>,
pub ipam_arn: Output<String>,
pub ipam_id: Output<String>,
pub ipam_region: Output<String>,
pub ipam_resource_discovery_id: Output<String>,
pub is_default: Output<bool>,
pub owner_id: Output<String>,
pub state: Output<String>,
pub tags: Output<Option<HashMap<String, String>>>,
pub tags_all: Output<HashMap<String, String>>,
}
Fields§
§arn: Output<String>
The Amazon Resource Name (ARN) of IPAM Resource Discovery Association.
ipam_arn: Output<String>
The Amazon Resource Name (ARN) of the IPAM.
ipam_id: Output<String>
The ID of the IPAM to associate.
ipam_region: Output<String>
The home region of the IPAM.
ipam_resource_discovery_id: Output<String>
The ID of the Resource Discovery to associate.
is_default: Output<bool>
A boolean to identify if the Resource Discovery is the accounts default resource discovery.
owner_id: Output<String>
The account ID for the account that manages the Resource Discovery
state: Output<String>
The lifecycle state of the association when you associate or disassociate a resource discovery.
A map of tags to add to the IPAM resource discovery association resource.
A map of tags assigned to the resource, including those inherited from the provider default_tags
configuration block.
Auto Trait Implementations§
impl Freeze for VpcIpamResourceDiscoveryAssociationResult
impl RefUnwindSafe for VpcIpamResourceDiscoveryAssociationResult
impl Send for VpcIpamResourceDiscoveryAssociationResult
impl Sync for VpcIpamResourceDiscoveryAssociationResult
impl Unpin for VpcIpamResourceDiscoveryAssociationResult
impl UnwindSafe for VpcIpamResourceDiscoveryAssociationResult
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
Mutably borrows from an owned value. Read more