CfnOdbNetworkProps
- class aws_cdk.aws_odb.CfnOdbNetworkProps(*, availability_zone=None, availability_zone_id=None, backup_subnet_cidr=None, client_subnet_cidr=None, default_dns_prefix=None, delete_associated_resources=None, display_name=None, tags=None)
Bases:
object
Properties for defining a
CfnOdbNetwork
.- Parameters:
availability_zone (
Optional
[str
]) – 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.availability_zone_id (
Optional
[str
]) – 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.backup_subnet_cidr (
Optional
[str
]) – The CIDR range of the backup subnet in the ODB network.client_subnet_cidr (
Optional
[str
]) – The CIDR range of the client subnet in the ODB network. Required when creating an ODB network.default_dns_prefix (
Optional
[str
]) – The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.delete_associated_resources (
Union
[bool
,IResolvable
,None
]) – Specifies whether to delete associated OCI networking resources along with the ODB network. Required when creating an ODB network.display_name (
Optional
[str
]) – The user-friendly name of the ODB network. Required when creating an ODB network.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Tags to assign to the Odb Network.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_odb as odb cfn_odb_network_props = odb.CfnOdbNetworkProps( availability_zone="availabilityZone", availability_zone_id="availabilityZoneId", backup_subnet_cidr="backupSubnetCidr", client_subnet_cidr="clientSubnetCidr", default_dns_prefix="defaultDnsPrefix", delete_associated_resources=False, display_name="displayName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- availability_zone
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.
- availability_zone_id
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.
- backup_subnet_cidr
The CIDR range of the backup subnet in the ODB network.
- client_subnet_cidr
The CIDR range of the client subnet in the ODB network.
Required when creating an ODB network.
- default_dns_prefix
The DNS prefix to the default DNS domain name.
The default DNS domain name is oraclevcn.com.
- delete_associated_resources
Specifies whether to delete associated OCI networking resources along with the ODB network.
Required when creating an ODB network.
- display_name
The user-friendly name of the ODB network.
Required when creating an ODB network.
- tags
Tags to assign to the Odb Network.