Class IInstanceEngine.Jsii$Proxy
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.rds.IInstanceEngine.Jsii$Proxy
- All Implemented Interfaces:
IEngine
,IEngine.Jsii$Default
,IInstanceEngine
,IInstanceEngine.Jsii$Default
,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
- IInstanceEngine
@Internal
public static final class IInstanceEngine.Jsii$Proxy
extends software.amazon.jsii.JsiiObject
implements IInstanceEngine.Jsii$Default
A proxy class which represents a concrete javascript instance of this type.
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.rds.IEngine
IEngine.Jsii$Default, IEngine.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.rds.IInstanceEngine
IInstanceEngine.Jsii$Default, IInstanceEngine.Jsii$Proxy
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal InstanceEngineConfig
bindToInstance
(Construct scope, InstanceEngineBindOptions options) Method called when the engine is used to create a new instance.final String
The default name of the master database user if one was not provided explicitly.final String
The family this engine belongs to, like "MYSQL", or "POSTGRESQL".final String
The type of the engine, for example "mysql".final EngineVersion
The exact version of the engine that is used, for example "5.1.42".The application used by this engine to perform rotation for a multi-user scenario.final String
The family to use for ParameterGroups using this engine.The application used by this engine to perform rotation for a single-user scenario.final Boolean
Whether this engine supports automatic backups of a read replica instance.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
-
-
Method Details
-
getEngineType
The type of the engine, for example "mysql".- Specified by:
getEngineType
in interfaceIEngine
- Specified by:
getEngineType
in interfaceIEngine.Jsii$Default
- Specified by:
getEngineType
in interfaceIInstanceEngine.Jsii$Default
-
getDefaultUsername
The default name of the master database user if one was not provided explicitly.The global default of 'admin' will be used if this is
undefined
. Note that 'admin' is a reserved word in PostgreSQL and cannot be used.- Specified by:
getDefaultUsername
in interfaceIEngine
- Specified by:
getDefaultUsername
in interfaceIEngine.Jsii$Default
- Specified by:
getDefaultUsername
in interfaceIInstanceEngine.Jsii$Default
-
getEngineFamily
The family this engine belongs to, like "MYSQL", or "POSTGRESQL".This property is used when creating a Database Proxy. Most engines don't belong to any family (and because of that, you can't create Database Proxies for their Clusters or Instances).
Default: - the engine doesn't belong to any family
- Specified by:
getEngineFamily
in interfaceIEngine
- Specified by:
getEngineFamily
in interfaceIEngine.Jsii$Default
- Specified by:
getEngineFamily
in interfaceIInstanceEngine.Jsii$Default
-
getEngineVersion
The exact version of the engine that is used, for example "5.1.42".Default: - use the default version for this engine type
- Specified by:
getEngineVersion
in interfaceIEngine
- Specified by:
getEngineVersion
in interfaceIEngine.Jsii$Default
- Specified by:
getEngineVersion
in interfaceIInstanceEngine.Jsii$Default
-
getParameterGroupFamily
The family to use for ParameterGroups using this engine.This is usually equal to "
", but can sometimes be a variation of that. You can pass this property when creating new ParameterGroup. Default: - the ParameterGroup family is not known (which means the major version of the engine is also not known)
- Specified by:
getParameterGroupFamily
in interfaceIEngine
- Specified by:
getParameterGroupFamily
in interfaceIEngine.Jsii$Default
- Specified by:
getParameterGroupFamily
in interfaceIInstanceEngine.Jsii$Default
-
getMultiUserRotationApplication
@Stability(Stable) @NotNull public final SecretRotationApplication getMultiUserRotationApplication()The application used by this engine to perform rotation for a multi-user scenario.- Specified by:
getMultiUserRotationApplication
in interfaceIInstanceEngine
- Specified by:
getMultiUserRotationApplication
in interfaceIInstanceEngine.Jsii$Default
-
getSingleUserRotationApplication
@Stability(Stable) @NotNull public final SecretRotationApplication getSingleUserRotationApplication()The application used by this engine to perform rotation for a single-user scenario.- Specified by:
getSingleUserRotationApplication
in interfaceIInstanceEngine
- Specified by:
getSingleUserRotationApplication
in interfaceIInstanceEngine.Jsii$Default
-
getSupportsReadReplicaBackups
Whether this engine supports automatic backups of a read replica instance.Default: false
- Specified by:
getSupportsReadReplicaBackups
in interfaceIInstanceEngine
- Specified by:
getSupportsReadReplicaBackups
in interfaceIInstanceEngine.Jsii$Default
-
bindToInstance
@Stability(Stable) @NotNull public final InstanceEngineConfig bindToInstance(@NotNull Construct scope, @NotNull InstanceEngineBindOptions options) Method called when the engine is used to create a new instance.- Specified by:
bindToInstance
in interfaceIInstanceEngine
- Specified by:
bindToInstance
in interfaceIInstanceEngine.Jsii$Default
- Parameters:
scope
- This parameter is required.options
- This parameter is required.
-