interface CfnOdbNetworkProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_odb.CfnOdbNetworkProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnOdbNetworkProps |
![]() | software.amazon.awscdk.services.odb.CfnOdbNetworkProps |
![]() | aws_cdk.aws_odb.CfnOdbNetworkProps |
![]() | aws-cdk-lib » aws_odb » CfnOdbNetworkProps |
Properties for defining a CfnOdbNetwork
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbnetwork.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from 'aws-cdk-lib';
const cfnOdbNetworkProps: odb.CfnOdbNetworkProps = {
availabilityZone: 'availabilityZone',
availabilityZoneId: 'availabilityZoneId',
backupSubnetCidr: 'backupSubnetCidr',
clientSubnetCidr: 'clientSubnetCidr',
defaultDnsPrefix: 'defaultDnsPrefix',
deleteAssociatedResources: false,
displayName: 'displayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
availability | string | The Availability Zone (AZ) where the ODB network is located. |
availability | string | The AZ ID of the AZ where the ODB network is located. |
backup | string | The CIDR range of the backup subnet in the ODB network. |
client | string | The CIDR range of the client subnet in the ODB network. |
default | string | The DNS prefix to the default DNS domain name. |
delete | boolean | IResolvable | Specifies whether to delete associated OCI networking resources along with the ODB network. |
display | string | The user-friendly name of the ODB network. |
tags? | Cfn [] | Tags to assign to the Odb Network. |
availabilityZone?
Type:
string
(optional)
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.
availabilityZoneId?
Type:
string
(optional)
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.
backupSubnetCidr?
Type:
string
(optional)
The CIDR range of the backup subnet in the ODB network.
clientSubnetCidr?
Type:
string
(optional)
The CIDR range of the client subnet in the ODB network.
Required when creating an ODB network.
defaultDnsPrefix?
Type:
string
(optional)
The DNS prefix to the default DNS domain name.
The default DNS domain name is oraclevcn.com.
deleteAssociatedResources?
Type:
boolean |
IResolvable
(optional)
Specifies whether to delete associated OCI networking resources along with the ODB network.
Required when creating an ODB network.
displayName?
Type:
string
(optional)
The user-friendly name of the ODB network.
Required when creating an ODB network.
tags?
Type:
Cfn
[]
(optional)
Tags to assign to the Odb Network.