Interface CfnEndpoint.MicrosoftSqlServerSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.MicrosoftSqlServerSettingsProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.MicrosoftSqlServerSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a Microsoft SQL Server endpoint.

This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Extra connection attributes when using SQL Server as a source for AWS DMS and Extra connection attributes when using SQL Server as a target for AWS DMS in the AWS Database Migration Service User Guide .

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.dms.*;
 MicrosoftSqlServerSettingsProperty microsoftSqlServerSettingsProperty = MicrosoftSqlServerSettingsProperty.builder()
         .bcpPacketSize(123)
         .controlTablesFileGroup("controlTablesFileGroup")
         .databaseName("databaseName")
         .forceLobLookup(false)
         .password("password")
         .port(123)
         .querySingleAlwaysOnNode(false)
         .readBackupOnly(false)
         .safeguardPolicy("safeguardPolicy")
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .serverName("serverName")
         .tlogAccessMode("tlogAccessMode")
         .trimSpaceInChar(false)
         .useBcpFullLoad(false)
         .username("username")
         .useThirdPartyBackupDevice(false)
         .build();
 

See Also: