CfnCloudVmClusterProps
- class aws_cdk.aws_odb.CfnCloudVmClusterProps(*, cloud_exadata_infrastructure_id=None, cluster_name=None, cpu_core_count=None, data_collection_options=None, data_storage_size_in_t_bs=None, db_node_storage_size_in_g_bs=None, db_servers=None, display_name=None, gi_version=None, hostname=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, license_model=None, memory_size_in_g_bs=None, odb_network_id=None, scan_listener_port_tcp=None, ssh_public_keys=None, system_version=None, tags=None, time_zone=None)
Bases:
object
Properties for defining a
CfnCloudVmCluster
.- Parameters:
cloud_exadata_infrastructure_id (
Optional
[str
]) – The unique identifier of the Exadata infrastructure that this VM cluster belongs to. Required when creating a VM cluster.cluster_name (
Optional
[str
]) – The name of the Grid Infrastructure (GI) cluster.cpu_core_count (
Union
[int
,float
,None
]) – The number of CPU cores enabled on the VM cluster. Required when creating a VM cluster.data_collection_options (
Union
[IResolvable
,DataCollectionOptionsProperty
,Dict
[str
,Any
],None
]) – The set of diagnostic collection options enabled for the VM cluster.data_storage_size_in_t_bs (
Union
[int
,float
,None
]) – The size of the data disk group, in terabytes (TB), that’s allocated for the VM cluster.db_node_storage_size_in_g_bs (
Union
[int
,float
,None
]) – The amount of local node storage, in gigabytes (GB), that’s allocated for the VM cluster.db_servers (
Optional
[Sequence
[str
]]) – The list of database servers for the VM cluster.display_name (
Optional
[str
]) – The user-friendly name for the VM cluster. Required when creating a VM cluster.gi_version (
Optional
[str
]) – The software version of the Oracle Grid Infrastructure (GI) for the VM cluster. Required when creating a VM cluster.hostname (
Optional
[str
]) – The host name for the VM cluster. Required when creating a VM cluster.is_local_backup_enabled (
Union
[bool
,IResolvable
,None
]) – Specifies whether database backups to local Exadata storage are enabled for the VM cluster.is_sparse_diskgroup_enabled (
Union
[bool
,IResolvable
,None
]) – Specifies whether the VM cluster is configured with a sparse disk group.license_model (
Optional
[str
]) – The Oracle license model applied to the VM cluster.memory_size_in_g_bs (
Union
[int
,float
,None
]) – The amount of memory, in gigabytes (GB), that’s allocated for the VM cluster.odb_network_id (
Optional
[str
]) – The unique identifier of the ODB network for the VM cluster. Required when creating a VM cluster.scan_listener_port_tcp (
Union
[int
,float
,None
]) – The port number for TCP connections to the single client access name (SCAN) listener. Valid values:1024–8999
with the following exceptions:2484
,6100
,6200
,7060
,7070
,7085
, and7879
Default:1521
ssh_public_keys (
Optional
[Sequence
[str
]]) – The public key portion of one or more key pairs used for SSH access to the VM cluster. Required when creating a VM cluster.system_version (
Optional
[str
]) – The operating system version of the image chosen for the VM cluster.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Tags to assign to the Vm Cluster.time_zone (
Optional
[str
]) – The time zone of the VM cluster.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudvmcluster.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_cloud_vm_cluster_props = odb.CfnCloudVmClusterProps( cloud_exadata_infrastructure_id="cloudExadataInfrastructureId", cluster_name="clusterName", cpu_core_count=123, data_collection_options=odb.CfnCloudVmCluster.DataCollectionOptionsProperty( is_diagnostics_events_enabled=False, is_health_monitoring_enabled=False, is_incident_logs_enabled=False ), data_storage_size_in_tBs=123, db_node_storage_size_in_gBs=123, db_servers=["dbServers"], display_name="displayName", gi_version="giVersion", hostname="hostname", is_local_backup_enabled=False, is_sparse_diskgroup_enabled=False, license_model="licenseModel", memory_size_in_gBs=123, odb_network_id="odbNetworkId", scan_listener_port_tcp=123, ssh_public_keys=["sshPublicKeys"], system_version="systemVersion", tags=[CfnTag( key="key", value="value" )], time_zone="timeZone" )
Attributes
- cloud_exadata_infrastructure_id
The unique identifier of the Exadata infrastructure that this VM cluster belongs to.
Required when creating a VM cluster.
- cluster_name
The name of the Grid Infrastructure (GI) cluster.
- cpu_core_count
The number of CPU cores enabled on the VM cluster.
Required when creating a VM cluster.
- data_collection_options
The set of diagnostic collection options enabled for the VM cluster.
- data_storage_size_in_t_bs
The size of the data disk group, in terabytes (TB), that’s allocated for the VM cluster.
- db_node_storage_size_in_g_bs
The amount of local node storage, in gigabytes (GB), that’s allocated for the VM cluster.
- db_servers
The list of database servers for the VM cluster.
- display_name
The user-friendly name for the VM cluster.
Required when creating a VM cluster.
- gi_version
The software version of the Oracle Grid Infrastructure (GI) for the VM cluster.
Required when creating a VM cluster.
- hostname
The host name for the VM cluster.
Required when creating a VM cluster.
- is_local_backup_enabled
Specifies whether database backups to local Exadata storage are enabled for the VM cluster.
- is_sparse_diskgroup_enabled
Specifies whether the VM cluster is configured with a sparse disk group.
- license_model
The Oracle license model applied to the VM cluster.
- memory_size_in_g_bs
The amount of memory, in gigabytes (GB), that’s allocated for the VM cluster.
- odb_network_id
The unique identifier of the ODB network for the VM cluster.
Required when creating a VM cluster.
- scan_listener_port_tcp
The port number for TCP connections to the single client access name (SCAN) listener.
Valid values:
1024–8999
with the following exceptions:2484
,6100
,6200
,7060
,7070
,7085
, and7879
Default:
1521
- ssh_public_keys
The public key portion of one or more key pairs used for SSH access to the VM cluster.
Required when creating a VM cluster.
- system_version
The operating system version of the image chosen for the VM cluster.
- tags
Tags to assign to the Vm Cluster.
- time_zone
The time zone of the VM cluster.