interface SybaseAseSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DMS.CfnDataProviderPropsMixin.SybaseAseSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdms#CfnDataProviderPropsMixin_SybaseAseSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dms.CfnDataProviderPropsMixin.SybaseAseSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_dms.CfnDataProviderPropsMixin.SybaseAseSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dms » CfnDataProviderPropsMixin » SybaseAseSettingsProperty |
SybaseAseSettings property identifier.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dms as dms } from '@aws-cdk/cfn-property-mixins';
const sybaseAseSettingsProperty: dms.CfnDataProviderPropsMixin.SybaseAseSettingsProperty = {
certificateArn: 'certificateArn',
databaseName: 'databaseName',
encryptPassword: false,
port: 123,
serverName: 'serverName',
sslMode: 'sslMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | |
| database | string | |
| encrypt | boolean | IResolvable | |
| port? | number | |
| server | string | |
| ssl | string |
certificateArn?
Type:
string
(optional)
databaseName?
Type:
string
(optional)
encryptPassword?
Type:
boolean | IResolvable
(optional)
port?
Type:
number
(optional)
serverName?
Type:
string
(optional)
sslMode?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript