Interface CfnIPAMResourceDiscoveryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMResourceDiscoveryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:17.529Z")
@Stability(Stable)
public interface CfnIPAMResourceDiscoveryProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIPAMResourceDiscovery
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; CfnIPAMResourceDiscoveryProps cfnIPAMResourceDiscoveryProps = CfnIPAMResourceDiscoveryProps.builder() .description("description") .operatingRegions(List.of(IpamOperatingRegionProperty.builder() .regionName("regionName") .build())) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIPAMResourceDiscoveryProps
static final class
An implementation forCfnIPAMResourceDiscoveryProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The resource discovery description.- See Also:
-
getOperatingRegions
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.
- See Also:
-
getTags
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 Also:
-
builder
-