Interface CfnCidrCollection.LocationProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnCidrCollection.LocationProperty.Jsii$Proxy
- Enclosing class:
 - CfnCidrCollection
 
@Stability(Stable)
public static interface CfnCidrCollection.LocationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the list of CIDR blocks for a CIDR location.
 
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.route53.*;
 LocationProperty locationProperty = LocationProperty.builder()
         .cidrList(List.of("cidrList"))
         .locationName("locationName")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCidrCollection.LocationPropertystatic final classAn implementation forCfnCidrCollection.LocationProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()List of CIDR blocks.The CIDR collection location name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getCidrList
List of CIDR blocks. - 
getLocationName
The CIDR collection location name. - 
builder
 
 -