Interface CfnCidrCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCidrCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.889Z")
@Stability(Stable)
public interface CfnCidrCollectionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCidrCollection.
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.*;
CfnCidrCollectionProps cfnCidrCollectionProps = CfnCidrCollectionProps.builder()
.name("name")
// the properties below are optional
.locations(List.of(LocationProperty.builder()
.cidrList(List.of("cidrList"))
.locationName("locationName")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCidrCollectionPropsstatic final classAn implementation forCfnCidrCollectionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of a CIDR collection. -
getLocations
A complex type that contains information about the list of CIDR locations. -
builder
- Returns:
- a
CfnCidrCollectionProps.BuilderofCfnCidrCollectionProps
-