Class SqlServerSeInstanceEngineProps
Properties for SQL Server Standard Edition instance engines.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SqlServerSeInstanceEngineProps : ISqlServerSeInstanceEngineProps
Syntax (vb)
Public Class SqlServerSeInstanceEngineProps Implements ISqlServerSeInstanceEngineProps
Remarks
Used in DatabaseInstanceEngine.sqlServerSe.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
SqlServerEngineVersion sqlServerEngineVersion;
var sqlServerSeInstanceEngineProps = new SqlServerSeInstanceEngineProps {
Version = sqlServerEngineVersion
};
Synopsis
Constructors
| SqlServerSeInstanceEngineProps() | Properties for SQL Server Standard Edition instance engines. |
Properties
| Version | The exact version of the engine to use. |
Constructors
SqlServerSeInstanceEngineProps()
Properties for SQL Server Standard Edition instance engines.
public SqlServerSeInstanceEngineProps()
Remarks
Used in DatabaseInstanceEngine.sqlServerSe.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
SqlServerEngineVersion sqlServerEngineVersion;
var sqlServerSeInstanceEngineProps = new SqlServerSeInstanceEngineProps {
Version = sqlServerEngineVersion
};
Properties
Version
The exact version of the engine to use.
public SqlServerEngineVersion Version { get; set; }
Property Value
Remarks
Used in DatabaseInstanceEngine.sqlServerSe.
ExampleMetadata: fixture=_generated