Interface CfnCidrCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCidrCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:15.140Z")
@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();
- See Also:
-
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.- See Also:
-
getLocations
A complex type that contains information about the list of CIDR locations.- See Also:
-
builder
- Returns:
- a
CfnCidrCollectionProps.BuilderofCfnCidrCollectionProps
-