Interface CfnCloudVmCluster.DbNodeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudVmCluster.DbNodeProperty.Jsii$Proxy
- Enclosing class:
CfnCloudVmCluster
@Stability(Stable)
public static interface CfnCloudVmCluster.DbNodeProperty
extends software.amazon.jsii.JsiiSerializable
Information about a DB node.
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.*; DbNodeProperty dbNodeProperty = DbNodeProperty.builder() .dbServerId("dbServerId") // the properties below are optional .backupIpId("backupIpId") .backupVnic2Id("backupVnic2Id") .cpuCoreCount(123) .dbNodeArn("dbNodeArn") .dbNodeId("dbNodeId") .dbNodeStorageSizeInGBs(123) .dbSystemId("dbSystemId") .hostIpId("hostIpId") .hostname("hostname") .memorySizeInGBs(123) .ocid("ocid") .status("status") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .vnic2Id("vnic2Id") .vnicId("vnicId") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCloudVmCluster.DbNodeProperty
static final class
An implementation forCfnCloudVmCluster.DbNodeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The Oracle Cloud ID (OCID) of the backup IP address that's associated with the DB node.default String
The OCID of the second backup VNIC.default Number
Number of CPU cores enabled on the DB node.default String
The Amazon Resource Name (ARN) of the DB node.default String
The unique identifier of the DB node.default Number
The amount of local node storage, in gigabytes (GBs), that's allocated on the DB node.The unique identifier of the Db server that is associated with the DB node.default String
The OCID of the DB system.default String
The OCID of the host IP address that's associated with the DB node.default String
The host name for the DB node.default Number
The allocated memory in GBs on the DB node.default String
getOcid()
The OCID of the DB node.default String
The current status of the DB node.getTags()
default String
The OCID of the second VNIC.default String
The OCID of the VNIC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbServerId
The unique identifier of the Db server that is associated with the DB node.- See Also:
-
getBackupIpId
The Oracle Cloud ID (OCID) of the backup IP address that's associated with the DB node.- See Also:
-
getBackupVnic2Id
The OCID of the second backup VNIC.- See Also:
-
getCpuCoreCount
Number of CPU cores enabled on the DB node.- See Also:
-
getDbNodeArn
The Amazon Resource Name (ARN) of the DB node.- See Also:
-
getDbNodeId
The unique identifier of the DB node.- See Also:
-
getDbNodeStorageSizeInGBs
The amount of local node storage, in gigabytes (GBs), that's allocated on the DB node.- See Also:
-
getDbSystemId
The OCID of the DB system.- See Also:
-
getHostIpId
The OCID of the host IP address that's associated with the DB node.- See Also:
-
getHostname
The host name for the DB node.- See Also:
-
getMemorySizeInGBs
The allocated memory in GBs on the DB node.- See Also:
-
getOcid
The OCID of the DB node.- See Also:
-
getStatus
The current status of the DB node.- See Also:
-
getTags
- See Also:
-
getVnic2Id
The OCID of the second VNIC.- See Also:
-
getVnicId
The OCID of the VNIC.- See Also:
-
builder
-