Class DatabaseInstanceBase

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.neptune.alpha.DatabaseInstanceBase
All Implemented Interfaces:
IResource, IDatabaseInstance, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable
Direct Known Subclasses:
DatabaseInstance

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.935Z") @Stability(Experimental) public abstract class DatabaseInstanceBase extends Resource implements IDatabaseInstance
(experimental) A new or imported database instance.

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.neptune.alpha.*;
 IDatabaseInstance databaseInstanceBase = DatabaseInstanceBase.fromDatabaseInstanceAttributes(this, "MyDatabaseInstanceBase", DatabaseInstanceAttributes.builder()
         .instanceEndpointAddress("instanceEndpointAddress")
         .instanceIdentifier("instanceIdentifier")
         .port(123)
         .build());
 
  • Constructor Details

    • DatabaseInstanceBase

      protected DatabaseInstanceBase(software.amazon.jsii.JsiiObjectRef objRef)
    • DatabaseInstanceBase

      protected DatabaseInstanceBase(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • DatabaseInstanceBase

      @Stability(Stable) protected DatabaseInstanceBase(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable ResourceProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props -
    • DatabaseInstanceBase

      @Stability(Stable) protected DatabaseInstanceBase(@NotNull software.constructs.Construct scope, @NotNull String id)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
  • Method Details