Interface CfnIPAMResourceDiscoveryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMResourceDiscoveryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:38.611Z")
@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();
-
Nested Class Summary
Nested ClassesModifier 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. -
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.
-
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.
-
builder
-