Interface SqlServerEeInstanceEngineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SqlServerEeInstanceEngineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:04.468Z")
@Stability(Stable)
public interface SqlServerEeInstanceEngineProps
extends software.amazon.jsii.JsiiSerializable
Properties for SQL Server Enterprise Edition instance engines.
Used in DatabaseInstanceEngine.sqlServerEe
.
Example:
Vpc vpc; ParameterGroup parameterGroup = ParameterGroup.Builder.create(this, "ParameterGroup") .engine(DatabaseInstanceEngine.sqlServerEe(SqlServerEeInstanceEngineProps.builder() .version(SqlServerEngineVersion.VER_11) .build())) .name("my-parameter-group") .parameters(Map.of( "locks", "100")) .build(); DatabaseInstance.Builder.create(this, "Database") .engine(DatabaseInstanceEngine.SQL_SERVER_EE) .vpc(vpc) .parameterGroup(parameterGroup) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSqlServerEeInstanceEngineProps
static final class
An implementation forSqlServerEeInstanceEngineProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersion
The exact version of the engine to use. -
builder
-