Class: Aws::DatabaseMigrationService::Types::MySqlDataProviderSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::MySqlDataProviderSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Provides information that defines a MySQL data provider.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate used for SSL connection.
-
#port ⇒ Integer
The port value for the MySQL data provider.
-
#server_name ⇒ String
The name of the MySQL server.
-
#ssl_mode ⇒ String
The SSL mode used to connect to the MySQL data provider.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate used for SSL connection.
8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 8739 class MySqlDataProviderSettings < Struct.new( :server_name, :port, :ssl_mode, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port value for the MySQL data provider.
8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 8739 class MySqlDataProviderSettings < Struct.new( :server_name, :port, :ssl_mode, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#server_name ⇒ String
The name of the MySQL server.
8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 8739 class MySqlDataProviderSettings < Struct.new( :server_name, :port, :ssl_mode, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#ssl_mode ⇒ String
The SSL mode used to connect to the MySQL data provider. The default value is ‘none`.
8739 8740 8741 8742 8743 8744 8745 8746 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 8739 class MySqlDataProviderSettings < Struct.new( :server_name, :port, :ssl_mode, :certificate_arn) SENSITIVE = [] include Aws::Structure end |