interface MySqlSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnDataProviderPropsMixin.MySqlSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnDataProviderPropsMixin_MySqlSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnDataProviderPropsMixin.MySqlSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnDataProviderPropsMixin.MySqlSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnDataProviderPropsMixin » MySqlSettingsProperty |
Provides information that defines a MySQL endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const mySqlSettingsProperty: dms_mixins.CfnDataProviderPropsMixin.MySqlSettingsProperty = {
certificateArn: 'certificateArn',
port: 123,
serverName: 'serverName',
sslMode: 'sslMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | |
| port? | number | Endpoint TCP port. |
| server | string | The host name of the endpoint database. |
| ssl | string |
certificateArn?
Type:
string
(optional)
port?
Type:
number
(optional)
Endpoint TCP port.
serverName?
Type:
string
(optional)
The host name of the endpoint database.
For an Amazon RDS MySQL instance, this is the output of DescribeDBInstances , in the [Endpoint](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html) .Address field.
For an Aurora MySQL instance, this is the output of DescribeDBClusters , in the Endpoint field.
sslMode?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript