Interface CfnEndpoint.SybaseSettingsProperty

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

@Stability(Stable) public static interface CfnEndpoint.SybaseSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a SAP ASE 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 SAP ASE as a source for AWS DMS and Extra connection attributes when using SAP ASE 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.*;
 SybaseSettingsProperty sybaseSettingsProperty = SybaseSettingsProperty.builder()
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .build();
 

See Also: