Class: Aws::DatabaseMigrationService::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::Endpoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Describes an endpoint of a database instance in response to operations such as the following:
-
‘CreateEndpoint`
-
‘DescribeEndpoint`
-
‘ModifyEndpoint`
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) used for SSL connection to the endpoint.
-
#database_name ⇒ String
The name of the database at the endpoint.
-
#dms_transfer_settings ⇒ Types::DmsTransferSettings
The settings for the DMS Transfer type source.
-
#doc_db_settings ⇒ Types::DocDbSettings
Provides information that defines a DocumentDB endpoint.
-
#dynamo_db_settings ⇒ Types::DynamoDbSettings
The settings for the DynamoDB target endpoint.
-
#elasticsearch_settings ⇒ Types::ElasticsearchSettings
The settings for the OpenSearch source endpoint.
-
#endpoint_arn ⇒ String
The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
-
#endpoint_identifier ⇒ String
The database endpoint identifier.
-
#endpoint_type ⇒ String
The type of endpoint.
-
#engine_display_name ⇒ String
The expanded name for the engine name.
-
#engine_name ⇒ String
The database engine name.
-
#external_id ⇒ String
Value returned by a call to CreateEndpoint that can be used for cross-account validation.
-
#external_table_definition ⇒ String
The external table definition.
-
#extra_connection_attributes ⇒ String
Additional connection attributes used to connect to the endpoint.
-
#gcp_my_sql_settings ⇒ Types::GcpMySQLSettings
Settings in JSON format for the source GCP MySQL endpoint.
-
#ibm_db_2_settings ⇒ Types::IBMDb2Settings
The settings for the IBM Db2 LUW source endpoint.
-
#kafka_settings ⇒ Types::KafkaSettings
The settings for the Apache Kafka target endpoint.
-
#kinesis_settings ⇒ Types::KinesisSettings
The settings for the Amazon Kinesis target endpoint.
-
#kms_key_id ⇒ String
An KMS key identifier that is used to encrypt the connection parameters for the endpoint.
-
#microsoft_sql_server_settings ⇒ Types::MicrosoftSQLServerSettings
The settings for the Microsoft SQL Server source and target endpoint.
-
#mongo_db_settings ⇒ Types::MongoDbSettings
The settings for the MongoDB source endpoint.
-
#my_sql_settings ⇒ Types::MySQLSettings
The settings for the MySQL source and target endpoint.
-
#neptune_settings ⇒ Types::NeptuneSettings
The settings for the Amazon Neptune target endpoint.
-
#oracle_settings ⇒ Types::OracleSettings
The settings for the Oracle source and target endpoint.
-
#port ⇒ Integer
The port value used to access the endpoint.
-
#postgre_sql_settings ⇒ Types::PostgreSQLSettings
The settings for the PostgreSQL source and target endpoint.
-
#redis_settings ⇒ Types::RedisSettings
The settings for the Redis target endpoint.
-
#redshift_settings ⇒ Types::RedshiftSettings
Settings for the Amazon Redshift endpoint.
-
#s3_settings ⇒ Types::S3Settings
The settings for the S3 target endpoint.
-
#server_name ⇒ String
The name of the server at the endpoint.
-
#service_access_role_arn ⇒ String
The Amazon Resource Name (ARN) used by the service to access the IAM role.
-
#ssl_mode ⇒ String
The SSL mode used to connect to the endpoint.
-
#status ⇒ String
The status of the endpoint.
-
#sybase_settings ⇒ Types::SybaseSettings
The settings for the SAP ASE source and target endpoint.
-
#timestream_settings ⇒ Types::TimestreamSettings
The settings for the Amazon Timestream target endpoint.
-
#username ⇒ String
The user name used to connect to the endpoint.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) used for SSL connection to the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the database at the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#dms_transfer_settings ⇒ Types::DmsTransferSettings
The settings for the DMS Transfer type source. For more information, see the DmsTransferSettings structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#doc_db_settings ⇒ Types::DocDbSettings
Provides information that defines a DocumentDB endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#dynamo_db_settings ⇒ Types::DynamoDbSettings
The settings for the DynamoDB target endpoint. For more information, see the ‘DynamoDBSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#elasticsearch_settings ⇒ Types::ElasticsearchSettings
The settings for the OpenSearch source endpoint. For more information, see the ‘ElasticsearchSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#endpoint_arn ⇒ String
The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#endpoint_identifier ⇒ String
The database endpoint identifier. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can’t end with a hyphen or contain two consecutive hyphens.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#endpoint_type ⇒ String
The type of endpoint. Valid values are ‘source` and `target`.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#engine_display_name ⇒ String
The expanded name for the engine name. For example, if the ‘EngineName` parameter is “aurora”, this value would be “Amazon Aurora MySQL”.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#engine_name ⇒ String
The database engine name. Valid values, depending on the EndpointType, include ‘“mysql”`, `“oracle”`, `“postgres”`, `“mariadb”`, `“aurora”`, `“aurora-postgresql”`, `“redshift”`, `“redshift-serverless”`, `“s3”`, `“db2”`, `“db2-zos”`, `“azuredb”`, `“sybase”`, `“dynamodb”`, `“mongodb”`, `“kinesis”`, `“kafka”`, `“elasticsearch”`, `“documentdb”`, `“sqlserver”`, `“neptune”`, and `“babelfish”`.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#external_id ⇒ String
Value returned by a call to CreateEndpoint that can be used for cross-account validation. Use it on a subsequent call to CreateEndpoint to create the endpoint with a cross-account.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#external_table_definition ⇒ String
The external table definition.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#extra_connection_attributes ⇒ String
Additional connection attributes used to connect to the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#gcp_my_sql_settings ⇒ Types::GcpMySQLSettings
Settings in JSON format for the source GCP MySQL endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#ibm_db_2_settings ⇒ Types::IBMDb2Settings
The settings for the IBM Db2 LUW source endpoint. For more information, see the ‘IBMDb2Settings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#kafka_settings ⇒ Types::KafkaSettings
The settings for the Apache Kafka target endpoint. For more information, see the ‘KafkaSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#kinesis_settings ⇒ Types::KinesisSettings
The settings for the Amazon Kinesis target endpoint. For more information, see the ‘KinesisSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
An KMS key identifier that is used to encrypt the connection parameters for the endpoint.
If you don’t specify a value for the ‘KmsKeyId` parameter, then DMS uses your default encryption key.
KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#microsoft_sql_server_settings ⇒ Types::MicrosoftSQLServerSettings
The settings for the Microsoft SQL Server source and target endpoint. For more information, see the ‘MicrosoftSQLServerSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#mongo_db_settings ⇒ Types::MongoDbSettings
The settings for the MongoDB source endpoint. For more information, see the ‘MongoDbSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#my_sql_settings ⇒ Types::MySQLSettings
The settings for the MySQL source and target endpoint. For more information, see the ‘MySQLSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#neptune_settings ⇒ Types::NeptuneSettings
The settings for the Amazon Neptune target endpoint. For more information, see the ‘NeptuneSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#oracle_settings ⇒ Types::OracleSettings
The settings for the Oracle source and target endpoint. For more information, see the ‘OracleSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port value used to access the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#postgre_sql_settings ⇒ Types::PostgreSQLSettings
The settings for the PostgreSQL source and target endpoint. For more information, see the ‘PostgreSQLSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#redis_settings ⇒ Types::RedisSettings
The settings for the Redis target endpoint. For more information, see the ‘RedisSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#redshift_settings ⇒ Types::RedshiftSettings
Settings for the Amazon Redshift endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#s3_settings ⇒ Types::S3Settings
The settings for the S3 target endpoint. For more information, see the ‘S3Settings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#server_name ⇒ String
The name of the server at the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#service_access_role_arn ⇒ String
The Amazon Resource Name (ARN) used by the service to access the IAM role. The role must allow the ‘iam:PassRole` action.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#ssl_mode ⇒ String
The SSL mode used to connect to the endpoint. The default value is ‘none`.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#sybase_settings ⇒ Types::SybaseSettings
The settings for the SAP ASE source and target endpoint. For more information, see the ‘SybaseSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#timestream_settings ⇒ Types::TimestreamSettings
The settings for the Amazon Timestream target endpoint. For more information, see the ‘TimestreamSettings` structure.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
The user name used to connect to the endpoint.
5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5557 class Endpoint < Struct.new( :endpoint_identifier, :endpoint_type, :engine_name, :engine_display_name, :username, :server_name, :port, :database_name, :extra_connection_attributes, :status, :kms_key_id, :endpoint_arn, :certificate_arn, :ssl_mode, :service_access_role_arn, :external_table_definition, :external_id, :dynamo_db_settings, :s3_settings, :dms_transfer_settings, :mongo_db_settings, :kinesis_settings, :kafka_settings, :elasticsearch_settings, :neptune_settings, :redshift_settings, :postgre_sql_settings, :my_sql_settings, :oracle_settings, :sybase_settings, :microsoft_sql_server_settings, :ibm_db_2_settings, :doc_db_settings, :redis_settings, :gcp_my_sql_settings, :timestream_settings) SENSITIVE = [] include Aws::Structure end |