Interface CfnOdbNetworkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOdbNetworkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:19.108Z")
@Stability(Stable)
public interface CfnOdbNetworkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnOdbNetwork
.
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.odb.*; CfnOdbNetworkProps cfnOdbNetworkProps = CfnOdbNetworkProps.builder() .availabilityZone("availabilityZone") .availabilityZoneId("availabilityZoneId") .backupSubnetCidr("backupSubnetCidr") .clientSubnetCidr("clientSubnetCidr") .defaultDnsPrefix("defaultDnsPrefix") .deleteAssociatedResources(false) .displayName("displayName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOdbNetworkProps
static final class
An implementation forCfnOdbNetworkProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnOdbNetworkProps.Builder
builder()
default String
The Availability Zone (AZ) where the ODB network is located.default String
The AZ ID of the AZ where the ODB network is located.default String
The CIDR range of the backup subnet in the ODB network.default String
The CIDR range of the client subnet in the ODB network.default String
The DNS prefix to the default DNS domain name.default Object
Specifies whether to delete associated OCI networking resources along with the ODB network.default String
The user-friendly name of the ODB network.getTags()
Tags to assign to the Odb Network.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
The Availability Zone (AZ) where the ODB network is located.Required when creating an ODB network. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the network.
- See Also:
-
getAvailabilityZoneId
The AZ ID of the AZ where the ODB network is located.Required when creating an ODB network. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the network.
- See Also:
-
getBackupSubnetCidr
The CIDR range of the backup subnet in the ODB network.- See Also:
-
getClientSubnetCidr
The CIDR range of the client subnet in the ODB network.Required when creating an ODB network.
- See Also:
-
getDefaultDnsPrefix
The DNS prefix to the default DNS domain name.The default DNS domain name is oraclevcn.com.
- See Also:
-
getDeleteAssociatedResources
Specifies whether to delete associated OCI networking resources along with the ODB network.Required when creating an ODB network.
- See Also:
-
getDisplayName
The user-friendly name of the ODB network.Required when creating an ODB network.
- See Also:
-
getTags
Tags to assign to the Odb Network.- See Also:
-
builder
- Returns:
- a
CfnOdbNetworkProps.Builder
ofCfnOdbNetworkProps
-