Interface IInstanceEngine.Jsii$Default
- All Superinterfaces:
IEngine,IEngine.Jsii$Default,IInstanceEngine,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IInstanceEngine.Jsii$Proxy
- Enclosing interface:
- IInstanceEngine
@Internal
public static interface IInstanceEngine.Jsii$Default
extends IInstanceEngine, IEngine.Jsii$Default
Internal default implementation for
IInstanceEngine.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.rds.IEngine
IEngine.Jsii$Default, IEngine.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.rds.IInstanceEngine
IInstanceEngine.Jsii$Default, IInstanceEngine.Jsii$Proxy -
Method Summary
Modifier and TypeMethodDescriptiondefault InstanceEngineConfigbindToInstance(Construct scope, InstanceEngineBindOptions options) Method called when the engine is used to create a new instance.default StringThe default name of the master database user if one was not provided explicitly.default StringThe family this engine belongs to, like "MYSQL", or "POSTGRESQL".default StringThe type of the engine, for example "mysql".default EngineVersionThe exact version of the engine that is used, for example "5.1.42".default SecretRotationApplicationThe application used by this engine to perform rotation for a multi-user scenario.default StringThe family to use for ParameterGroups using this engine.default SecretRotationApplicationThe application used by this engine to perform rotation for a single-user scenario.default BooleanWhether this engine supports automatic backups of a read replica instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEngineType
The type of the engine, for example "mysql".- Specified by:
getEngineTypein interfaceIEngine- Specified by:
getEngineTypein interfaceIEngine.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:
getDefaultUsernamein interfaceIEngine- Specified by:
getDefaultUsernamein interfaceIEngine.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:
getEngineFamilyin interfaceIEngine- Specified by:
getEngineFamilyin interfaceIEngine.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:
getEngineVersionin interfaceIEngine- Specified by:
getEngineVersionin interfaceIEngine.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:
getParameterGroupFamilyin interfaceIEngine- Specified by:
getParameterGroupFamilyin interfaceIEngine.Jsii$Default
-
getMultiUserRotationApplication
The application used by this engine to perform rotation for a multi-user scenario.- Specified by:
getMultiUserRotationApplicationin interfaceIInstanceEngine
-
getSingleUserRotationApplication
The application used by this engine to perform rotation for a single-user scenario.- Specified by:
getSingleUserRotationApplicationin interfaceIInstanceEngine
-
getSupportsReadReplicaBackups
Whether this engine supports automatic backups of a read replica instance.Default: false
- Specified by:
getSupportsReadReplicaBackupsin interfaceIInstanceEngine
-
bindToInstance
@Stability(Stable) @NotNull default InstanceEngineConfig bindToInstance(@NotNull Construct scope, @NotNull InstanceEngineBindOptions options) Method called when the engine is used to create a new instance.- Specified by:
bindToInstancein interfaceIInstanceEngine- Parameters:
scope- This parameter is required.options- This parameter is required.
-