CfnOdbNetworkProps
- class aws_cdk.aws_odb.CfnOdbNetworkProps(*, availability_zone=None, availability_zone_id=None, backup_subnet_cidr=None, client_subnet_cidr=None, custom_domain_name=None, default_dns_prefix=None, delete_associated_resources=None, display_name=None, s3_access=None, s3_policy_document=None, tags=None, zero_etl_access=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.custom_domain_name (
Optional
[str
]) – The domain name for the resources in the 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.s3_access (
Optional
[str
]) – The configuration for Amazon S3 access from the ODB network.s3_policy_document (
Optional
[str
]) – Specifies the endpoint policy for Amazon S3 access from the ODB network.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Tags to assign to the Odb Network.zero_etl_access (
Optional
[str
]) – The configuration for Zero-ETL access from 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", custom_domain_name="customDomainName", default_dns_prefix="defaultDnsPrefix", delete_associated_resources=False, display_name="displayName", s3_access="s3Access", s3_policy_document="s3PolicyDocument", tags=[CfnTag( key="key", value="value" )], zero_etl_access="zeroEtlAccess" )
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.
- custom_domain_name
The domain name for the resources in the 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.
- s3_access
The configuration for Amazon S3 access from the ODB network.
- s3_policy_document
Specifies the endpoint policy for Amazon S3 access from the ODB network.
- tags
Tags to assign to the Odb Network.
- zero_etl_access
The configuration for Zero-ETL access from the ODB network.