CfnIPAMResourceDiscoveryProps
- class aws_cdk.aws_ec2.CfnIPAMResourceDiscoveryProps(*, description=None, operating_regions=None, tags=None)
Bases:
object
Properties for defining a
CfnIPAMResourceDiscovery
.- Parameters:
description (
Optional
[str
]) – The resource discovery description.operating_regions (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,IpamOperatingRegionProperty
,Dict
[str
,Any
]]],None
]) – The operating Regions for the resource discovery. Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A tag is a label that you assign to an AWS resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your AWS costs.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ec2 as ec2 cfn_iPAMResource_discovery_props = ec2.CfnIPAMResourceDiscoveryProps( description="description", operating_regions=[ec2.CfnIPAMResourceDiscovery.IpamOperatingRegionProperty( region_name="regionName" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The resource discovery description.
- operating_regions
The operating Regions for the resource discovery.
Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions.
- tags
A tag is a label that you assign to an AWS resource.
Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your AWS costs.