/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class CreateEndpointRequest : public DatabaseMigrationServiceRequest { public: AWS_DATABASEMIGRATIONSERVICE_API CreateEndpointRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateEndpoint"; } AWS_DATABASEMIGRATIONSERVICE_API Aws::String SerializePayload() const override; AWS_DATABASEMIGRATIONSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

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.

*/ inline const Aws::String& GetEndpointIdentifier() const{ return m_endpointIdentifier; } /** *

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.

*/ inline bool EndpointIdentifierHasBeenSet() const { return m_endpointIdentifierHasBeenSet; } /** *

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.

*/ inline void SetEndpointIdentifier(const Aws::String& value) { m_endpointIdentifierHasBeenSet = true; m_endpointIdentifier = value; } /** *

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.

*/ inline void SetEndpointIdentifier(Aws::String&& value) { m_endpointIdentifierHasBeenSet = true; m_endpointIdentifier = std::move(value); } /** *

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.

*/ inline void SetEndpointIdentifier(const char* value) { m_endpointIdentifierHasBeenSet = true; m_endpointIdentifier.assign(value); } /** *

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.

*/ inline CreateEndpointRequest& WithEndpointIdentifier(const Aws::String& value) { SetEndpointIdentifier(value); return *this;} /** *

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.

*/ inline CreateEndpointRequest& WithEndpointIdentifier(Aws::String&& value) { SetEndpointIdentifier(std::move(value)); return *this;} /** *

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.

*/ inline CreateEndpointRequest& WithEndpointIdentifier(const char* value) { SetEndpointIdentifier(value); return *this;} /** *

The type of endpoint. Valid values are source and * target.

*/ inline const ReplicationEndpointTypeValue& GetEndpointType() const{ return m_endpointType; } /** *

The type of endpoint. Valid values are source and * target.

*/ inline bool EndpointTypeHasBeenSet() const { return m_endpointTypeHasBeenSet; } /** *

The type of endpoint. Valid values are source and * target.

*/ inline void SetEndpointType(const ReplicationEndpointTypeValue& value) { m_endpointTypeHasBeenSet = true; m_endpointType = value; } /** *

The type of endpoint. Valid values are source and * target.

*/ inline void SetEndpointType(ReplicationEndpointTypeValue&& value) { m_endpointTypeHasBeenSet = true; m_endpointType = std::move(value); } /** *

The type of endpoint. Valid values are source and * target.

*/ inline CreateEndpointRequest& WithEndpointType(const ReplicationEndpointTypeValue& value) { SetEndpointType(value); return *this;} /** *

The type of endpoint. Valid values are source and * target.

*/ inline CreateEndpointRequest& WithEndpointType(ReplicationEndpointTypeValue&& value) { SetEndpointType(std::move(value)); return *this;} /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline const Aws::String& GetEngineName() const{ return m_engineName; } /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline bool EngineNameHasBeenSet() const { return m_engineNameHasBeenSet; } /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline void SetEngineName(const Aws::String& value) { m_engineNameHasBeenSet = true; m_engineName = value; } /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline void SetEngineName(Aws::String&& value) { m_engineNameHasBeenSet = true; m_engineName = std::move(value); } /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline void SetEngineName(const char* value) { m_engineNameHasBeenSet = true; m_engineName.assign(value); } /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline CreateEndpointRequest& WithEngineName(const Aws::String& value) { SetEngineName(value); return *this;} /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline CreateEndpointRequest& WithEngineName(Aws::String&& value) { SetEngineName(std::move(value)); return *this;} /** *

The type of engine for the endpoint. Valid values, depending on the * EndpointType value, include "mysql", * "oracle", "postgres", "mariadb", * "aurora", "aurora-postgresql", * "opensearch", "redshift", "s3", * "db2", "db2-zos", "azuredb", * "sybase", "dynamodb", "mongodb", * "kinesis", "kafka", "elasticsearch", * "docdb", "sqlserver", "neptune", and * "babelfish".

*/ inline CreateEndpointRequest& WithEngineName(const char* value) { SetEngineName(value); return *this;} /** *

The user name to be used to log in to the endpoint database.

*/ inline const Aws::String& GetUsername() const{ return m_username; } /** *

The user name to be used to log in to the endpoint database.

*/ inline bool UsernameHasBeenSet() const { return m_usernameHasBeenSet; } /** *

The user name to be used to log in to the endpoint database.

*/ inline void SetUsername(const Aws::String& value) { m_usernameHasBeenSet = true; m_username = value; } /** *

The user name to be used to log in to the endpoint database.

*/ inline void SetUsername(Aws::String&& value) { m_usernameHasBeenSet = true; m_username = std::move(value); } /** *

The user name to be used to log in to the endpoint database.

*/ inline void SetUsername(const char* value) { m_usernameHasBeenSet = true; m_username.assign(value); } /** *

The user name to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithUsername(const Aws::String& value) { SetUsername(value); return *this;} /** *

The user name to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithUsername(Aws::String&& value) { SetUsername(std::move(value)); return *this;} /** *

The user name to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithUsername(const char* value) { SetUsername(value); return *this;} /** *

The password to be used to log in to the endpoint database.

*/ inline const Aws::String& GetPassword() const{ return m_password; } /** *

The password to be used to log in to the endpoint database.

*/ inline bool PasswordHasBeenSet() const { return m_passwordHasBeenSet; } /** *

The password to be used to log in to the endpoint database.

*/ inline void SetPassword(const Aws::String& value) { m_passwordHasBeenSet = true; m_password = value; } /** *

The password to be used to log in to the endpoint database.

*/ inline void SetPassword(Aws::String&& value) { m_passwordHasBeenSet = true; m_password = std::move(value); } /** *

The password to be used to log in to the endpoint database.

*/ inline void SetPassword(const char* value) { m_passwordHasBeenSet = true; m_password.assign(value); } /** *

The password to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithPassword(const Aws::String& value) { SetPassword(value); return *this;} /** *

The password to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithPassword(Aws::String&& value) { SetPassword(std::move(value)); return *this;} /** *

The password to be used to log in to the endpoint database.

*/ inline CreateEndpointRequest& WithPassword(const char* value) { SetPassword(value); return *this;} /** *

The name of the server where the endpoint database resides.

*/ inline const Aws::String& GetServerName() const{ return m_serverName; } /** *

The name of the server where the endpoint database resides.

*/ inline bool ServerNameHasBeenSet() const { return m_serverNameHasBeenSet; } /** *

The name of the server where the endpoint database resides.

*/ inline void SetServerName(const Aws::String& value) { m_serverNameHasBeenSet = true; m_serverName = value; } /** *

The name of the server where the endpoint database resides.

*/ inline void SetServerName(Aws::String&& value) { m_serverNameHasBeenSet = true; m_serverName = std::move(value); } /** *

The name of the server where the endpoint database resides.

*/ inline void SetServerName(const char* value) { m_serverNameHasBeenSet = true; m_serverName.assign(value); } /** *

The name of the server where the endpoint database resides.

*/ inline CreateEndpointRequest& WithServerName(const Aws::String& value) { SetServerName(value); return *this;} /** *

The name of the server where the endpoint database resides.

*/ inline CreateEndpointRequest& WithServerName(Aws::String&& value) { SetServerName(std::move(value)); return *this;} /** *

The name of the server where the endpoint database resides.

*/ inline CreateEndpointRequest& WithServerName(const char* value) { SetServerName(value); return *this;} /** *

The port used by the endpoint database.

*/ inline int GetPort() const{ return m_port; } /** *

The port used by the endpoint database.

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

The port used by the endpoint database.

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

The port used by the endpoint database.

*/ inline CreateEndpointRequest& WithPort(int value) { SetPort(value); return *this;} /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline const Aws::String& GetDatabaseName() const{ return m_databaseName; } /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; } /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; } /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); } /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); } /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline CreateEndpointRequest& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;} /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline CreateEndpointRequest& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;} /** *

The name of the endpoint database. For a MySQL source or target endpoint, do * not specify DatabaseName. To migrate to a specific database, use this setting * and targetDbType.

*/ inline CreateEndpointRequest& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;} /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline const Aws::String& GetExtraConnectionAttributes() const{ return m_extraConnectionAttributes; } /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline bool ExtraConnectionAttributesHasBeenSet() const { return m_extraConnectionAttributesHasBeenSet; } /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline void SetExtraConnectionAttributes(const Aws::String& value) { m_extraConnectionAttributesHasBeenSet = true; m_extraConnectionAttributes = value; } /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline void SetExtraConnectionAttributes(Aws::String&& value) { m_extraConnectionAttributesHasBeenSet = true; m_extraConnectionAttributes = std::move(value); } /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline void SetExtraConnectionAttributes(const char* value) { m_extraConnectionAttributesHasBeenSet = true; m_extraConnectionAttributes.assign(value); } /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithExtraConnectionAttributes(const Aws::String& value) { SetExtraConnectionAttributes(value); return *this;} /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithExtraConnectionAttributes(Aws::String&& value) { SetExtraConnectionAttributes(std::move(value)); return *this;} /** *

Additional attributes associated with the connection. Each attribute is * specified as a name-value pair associated by an equal sign (=). Multiple * attributes are separated by a semicolon (;) with no additional white space. For * information on the attributes available for connecting your source or target * endpoint, see Working * with DMS Endpoints in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithExtraConnectionAttributes(const char* value) { SetExtraConnectionAttributes(value); return *this;} /** *

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.

*/ inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; } /** *

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.

*/ inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; } /** *

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.

*/ inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; } /** *

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.

*/ inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); } /** *

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.

*/ inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); } /** *

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.

*/ inline CreateEndpointRequest& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;} /** *

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.

*/ inline CreateEndpointRequest& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;} /** *

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.

*/ inline CreateEndpointRequest& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} /** *

One or more tags to be assigned to the endpoint.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

One or more tags to be assigned to the endpoint.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

One or more tags to be assigned to the endpoint.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

One or more tags to be assigned to the endpoint.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

One or more tags to be assigned to the endpoint.

*/ inline CreateEndpointRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

One or more tags to be assigned to the endpoint.

*/ inline CreateEndpointRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

One or more tags to be assigned to the endpoint.

*/ inline CreateEndpointRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

One or more tags to be assigned to the endpoint.

*/ inline CreateEndpointRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline bool CertificateArnHasBeenSet() const { return m_certificateArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline void SetCertificateArn(const Aws::String& value) { m_certificateArnHasBeenSet = true; m_certificateArn = value; } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline void SetCertificateArn(Aws::String&& value) { m_certificateArnHasBeenSet = true; m_certificateArn = std::move(value); } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline void SetCertificateArn(const char* value) { m_certificateArnHasBeenSet = true; m_certificateArn.assign(value); } /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline CreateEndpointRequest& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline CreateEndpointRequest& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the certificate.

*/ inline CreateEndpointRequest& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline const DmsSslModeValue& GetSslMode() const{ return m_sslMode; } /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline bool SslModeHasBeenSet() const { return m_sslModeHasBeenSet; } /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline void SetSslMode(const DmsSslModeValue& value) { m_sslModeHasBeenSet = true; m_sslMode = value; } /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline void SetSslMode(DmsSslModeValue&& value) { m_sslModeHasBeenSet = true; m_sslMode = std::move(value); } /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline CreateEndpointRequest& WithSslMode(const DmsSslModeValue& value) { SetSslMode(value); return *this;} /** *

The Secure Sockets Layer (SSL) mode to use for the SSL connection. The * default is none

*/ inline CreateEndpointRequest& WithSslMode(DmsSslModeValue&& value) { SetSslMode(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline const Aws::String& GetServiceAccessRoleArn() const{ return m_serviceAccessRoleArn; } /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline bool ServiceAccessRoleArnHasBeenSet() const { return m_serviceAccessRoleArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline void SetServiceAccessRoleArn(const Aws::String& value) { m_serviceAccessRoleArnHasBeenSet = true; m_serviceAccessRoleArn = value; } /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline void SetServiceAccessRoleArn(Aws::String&& value) { m_serviceAccessRoleArnHasBeenSet = true; m_serviceAccessRoleArn = std::move(value); } /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline void SetServiceAccessRoleArn(const char* value) { m_serviceAccessRoleArnHasBeenSet = true; m_serviceAccessRoleArn.assign(value); } /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline CreateEndpointRequest& WithServiceAccessRoleArn(const Aws::String& value) { SetServiceAccessRoleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline CreateEndpointRequest& WithServiceAccessRoleArn(Aws::String&& value) { SetServiceAccessRoleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the service access role that you want to * use to create the endpoint. The role must allow the iam:PassRole * action.

*/ inline CreateEndpointRequest& WithServiceAccessRoleArn(const char* value) { SetServiceAccessRoleArn(value); return *this;} /** *

The external table definition.

*/ inline const Aws::String& GetExternalTableDefinition() const{ return m_externalTableDefinition; } /** *

The external table definition.

*/ inline bool ExternalTableDefinitionHasBeenSet() const { return m_externalTableDefinitionHasBeenSet; } /** *

The external table definition.

*/ inline void SetExternalTableDefinition(const Aws::String& value) { m_externalTableDefinitionHasBeenSet = true; m_externalTableDefinition = value; } /** *

The external table definition.

*/ inline void SetExternalTableDefinition(Aws::String&& value) { m_externalTableDefinitionHasBeenSet = true; m_externalTableDefinition = std::move(value); } /** *

The external table definition.

*/ inline void SetExternalTableDefinition(const char* value) { m_externalTableDefinitionHasBeenSet = true; m_externalTableDefinition.assign(value); } /** *

The external table definition.

*/ inline CreateEndpointRequest& WithExternalTableDefinition(const Aws::String& value) { SetExternalTableDefinition(value); return *this;} /** *

The external table definition.

*/ inline CreateEndpointRequest& WithExternalTableDefinition(Aws::String&& value) { SetExternalTableDefinition(std::move(value)); return *this;} /** *

The external table definition.

*/ inline CreateEndpointRequest& WithExternalTableDefinition(const char* value) { SetExternalTableDefinition(value); return *this;} /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline const DynamoDbSettings& GetDynamoDbSettings() const{ return m_dynamoDbSettings; } /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline bool DynamoDbSettingsHasBeenSet() const { return m_dynamoDbSettingsHasBeenSet; } /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline void SetDynamoDbSettings(const DynamoDbSettings& value) { m_dynamoDbSettingsHasBeenSet = true; m_dynamoDbSettings = value; } /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline void SetDynamoDbSettings(DynamoDbSettings&& value) { m_dynamoDbSettingsHasBeenSet = true; m_dynamoDbSettings = std::move(value); } /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline CreateEndpointRequest& WithDynamoDbSettings(const DynamoDbSettings& value) { SetDynamoDbSettings(value); return *this;} /** *

Settings in JSON format for the target Amazon DynamoDB endpoint. For * information about other available settings, see Using * Object Mapping to Migrate Data to DynamoDB in the Database Migration * Service User Guide.

*/ inline CreateEndpointRequest& WithDynamoDbSettings(DynamoDbSettings&& value) { SetDynamoDbSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline const S3Settings& GetS3Settings() const{ return m_s3Settings; } /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline bool S3SettingsHasBeenSet() const { return m_s3SettingsHasBeenSet; } /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline void SetS3Settings(const S3Settings& value) { m_s3SettingsHasBeenSet = true; m_s3Settings = value; } /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline void SetS3Settings(S3Settings&& value) { m_s3SettingsHasBeenSet = true; m_s3Settings = std::move(value); } /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithS3Settings(const S3Settings& value) { SetS3Settings(value); return *this;} /** *

Settings in JSON format for the target Amazon S3 endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using Amazon S3 as a Target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithS3Settings(S3Settings&& value) { SetS3Settings(std::move(value)); return *this;} /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline const DmsTransferSettings& GetDmsTransferSettings() const{ return m_dmsTransferSettings; } /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline bool DmsTransferSettingsHasBeenSet() const { return m_dmsTransferSettingsHasBeenSet; } /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline void SetDmsTransferSettings(const DmsTransferSettings& value) { m_dmsTransferSettingsHasBeenSet = true; m_dmsTransferSettings = value; } /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline void SetDmsTransferSettings(DmsTransferSettings&& value) { m_dmsTransferSettingsHasBeenSet = true; m_dmsTransferSettings = std::move(value); } /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline CreateEndpointRequest& WithDmsTransferSettings(const DmsTransferSettings& value) { SetDmsTransferSettings(value); return *this;} /** *

The settings in JSON format for the DMS transfer type of source endpoint. *

Possible settings include the following:

  • * ServiceAccessRoleArn - The Amazon Resource Name (ARN) used by the * service access IAM role. The role must allow the iam:PassRole * action.

  • BucketName - The name of the S3 bucket * to use.

Shorthand syntax for these settings is as follows: * ServiceAccessRoleArn=string,BucketName=string

JSON syntax * for these settings is as follows: { "ServiceAccessRoleArn": "string", * "BucketName": "string", }

*/ inline CreateEndpointRequest& WithDmsTransferSettings(DmsTransferSettings&& value) { SetDmsTransferSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline const MongoDbSettings& GetMongoDbSettings() const{ return m_mongoDbSettings; } /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline bool MongoDbSettingsHasBeenSet() const { return m_mongoDbSettingsHasBeenSet; } /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline void SetMongoDbSettings(const MongoDbSettings& value) { m_mongoDbSettingsHasBeenSet = true; m_mongoDbSettings = value; } /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline void SetMongoDbSettings(MongoDbSettings&& value) { m_mongoDbSettingsHasBeenSet = true; m_mongoDbSettings = std::move(value); } /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMongoDbSettings(const MongoDbSettings& value) { SetMongoDbSettings(value); return *this;} /** *

Settings in JSON format for the source MongoDB endpoint. For more information * about the available settings, see Endpoint * configuration settings when using MongoDB as a source for Database Migration * Service in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMongoDbSettings(MongoDbSettings&& value) { SetMongoDbSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline const KinesisSettings& GetKinesisSettings() const{ return m_kinesisSettings; } /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline bool KinesisSettingsHasBeenSet() const { return m_kinesisSettingsHasBeenSet; } /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline void SetKinesisSettings(const KinesisSettings& value) { m_kinesisSettingsHasBeenSet = true; m_kinesisSettings = value; } /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline void SetKinesisSettings(KinesisSettings&& value) { m_kinesisSettingsHasBeenSet = true; m_kinesisSettings = std::move(value); } /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline CreateEndpointRequest& WithKinesisSettings(const KinesisSettings& value) { SetKinesisSettings(value); return *this;} /** *

Settings in JSON format for the target endpoint for Amazon Kinesis Data * Streams. For more information about the available settings, see Using * object mapping to migrate data to a Kinesis data stream in the Database * Migration Service User Guide.

*/ inline CreateEndpointRequest& WithKinesisSettings(KinesisSettings&& value) { SetKinesisSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline const KafkaSettings& GetKafkaSettings() const{ return m_kafkaSettings; } /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline bool KafkaSettingsHasBeenSet() const { return m_kafkaSettingsHasBeenSet; } /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline void SetKafkaSettings(const KafkaSettings& value) { m_kafkaSettingsHasBeenSet = true; m_kafkaSettings = value; } /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline void SetKafkaSettings(KafkaSettings&& value) { m_kafkaSettingsHasBeenSet = true; m_kafkaSettings = std::move(value); } /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline CreateEndpointRequest& WithKafkaSettings(const KafkaSettings& value) { SetKafkaSettings(value); return *this;} /** *

Settings in JSON format for the target Apache Kafka endpoint. For more * information about the available settings, see Using * object mapping to migrate data to a Kafka topic in the Database Migration * Service User Guide.

*/ inline CreateEndpointRequest& WithKafkaSettings(KafkaSettings&& value) { SetKafkaSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline const ElasticsearchSettings& GetElasticsearchSettings() const{ return m_elasticsearchSettings; } /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline bool ElasticsearchSettingsHasBeenSet() const { return m_elasticsearchSettingsHasBeenSet; } /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline void SetElasticsearchSettings(const ElasticsearchSettings& value) { m_elasticsearchSettingsHasBeenSet = true; m_elasticsearchSettings = value; } /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline void SetElasticsearchSettings(ElasticsearchSettings&& value) { m_elasticsearchSettingsHasBeenSet = true; m_elasticsearchSettings = std::move(value); } /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithElasticsearchSettings(const ElasticsearchSettings& value) { SetElasticsearchSettings(value); return *this;} /** *

Settings in JSON format for the target OpenSearch endpoint. For more * information about the available settings, see Extra * Connection Attributes When Using OpenSearch as a Target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithElasticsearchSettings(ElasticsearchSettings&& value) { SetElasticsearchSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline const NeptuneSettings& GetNeptuneSettings() const{ return m_neptuneSettings; } /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline bool NeptuneSettingsHasBeenSet() const { return m_neptuneSettingsHasBeenSet; } /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline void SetNeptuneSettings(const NeptuneSettings& value) { m_neptuneSettingsHasBeenSet = true; m_neptuneSettings = value; } /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline void SetNeptuneSettings(NeptuneSettings&& value) { m_neptuneSettingsHasBeenSet = true; m_neptuneSettings = std::move(value); } /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithNeptuneSettings(const NeptuneSettings& value) { SetNeptuneSettings(value); return *this;} /** *

Settings in JSON format for the target Amazon Neptune endpoint. For more * information about the available settings, see Specifying * graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target * in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithNeptuneSettings(NeptuneSettings&& value) { SetNeptuneSettings(std::move(value)); return *this;} inline const RedshiftSettings& GetRedshiftSettings() const{ return m_redshiftSettings; } inline bool RedshiftSettingsHasBeenSet() const { return m_redshiftSettingsHasBeenSet; } inline void SetRedshiftSettings(const RedshiftSettings& value) { m_redshiftSettingsHasBeenSet = true; m_redshiftSettings = value; } inline void SetRedshiftSettings(RedshiftSettings&& value) { m_redshiftSettingsHasBeenSet = true; m_redshiftSettings = std::move(value); } inline CreateEndpointRequest& WithRedshiftSettings(const RedshiftSettings& value) { SetRedshiftSettings(value); return *this;} inline CreateEndpointRequest& WithRedshiftSettings(RedshiftSettings&& value) { SetRedshiftSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline const PostgreSQLSettings& GetPostgreSQLSettings() const{ return m_postgreSQLSettings; } /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline bool PostgreSQLSettingsHasBeenSet() const { return m_postgreSQLSettingsHasBeenSet; } /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetPostgreSQLSettings(const PostgreSQLSettings& value) { m_postgreSQLSettingsHasBeenSet = true; m_postgreSQLSettings = value; } /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetPostgreSQLSettings(PostgreSQLSettings&& value) { m_postgreSQLSettingsHasBeenSet = true; m_postgreSQLSettings = std::move(value); } /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithPostgreSQLSettings(const PostgreSQLSettings& value) { SetPostgreSQLSettings(value); return *this;} /** *

Settings in JSON format for the source and target PostgreSQL endpoint. For * information about other available settings, see Extra * connection attributes when using PostgreSQL as a source for DMS and * Extra connection attributes when using PostgreSQL as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithPostgreSQLSettings(PostgreSQLSettings&& value) { SetPostgreSQLSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline const MySQLSettings& GetMySQLSettings() const{ return m_mySQLSettings; } /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline bool MySQLSettingsHasBeenSet() const { return m_mySQLSettingsHasBeenSet; } /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline void SetMySQLSettings(const MySQLSettings& value) { m_mySQLSettingsHasBeenSet = true; m_mySQLSettings = value; } /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline void SetMySQLSettings(MySQLSettings&& value) { m_mySQLSettingsHasBeenSet = true; m_mySQLSettings = std::move(value); } /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMySQLSettings(const MySQLSettings& value) { SetMySQLSettings(value); return *this;} /** *

Settings in JSON format for the source and target MySQL endpoint. For * information about other available settings, see Extra * connection attributes when using MySQL as a source for DMS and Extra * connection attributes when using a MySQL-compatible database as a target for * DMS in the Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMySQLSettings(MySQLSettings&& value) { SetMySQLSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline const OracleSettings& GetOracleSettings() const{ return m_oracleSettings; } /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline bool OracleSettingsHasBeenSet() const { return m_oracleSettingsHasBeenSet; } /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetOracleSettings(const OracleSettings& value) { m_oracleSettingsHasBeenSet = true; m_oracleSettings = value; } /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetOracleSettings(OracleSettings&& value) { m_oracleSettingsHasBeenSet = true; m_oracleSettings = std::move(value); } /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithOracleSettings(const OracleSettings& value) { SetOracleSettings(value); return *this;} /** *

Settings in JSON format for the source and target Oracle endpoint. For * information about other available settings, see Extra * connection attributes when using Oracle as a source for DMS and * Extra connection attributes when using Oracle as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithOracleSettings(OracleSettings&& value) { SetOracleSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline const SybaseSettings& GetSybaseSettings() const{ return m_sybaseSettings; } /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline bool SybaseSettingsHasBeenSet() const { return m_sybaseSettingsHasBeenSet; } /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetSybaseSettings(const SybaseSettings& value) { m_sybaseSettingsHasBeenSet = true; m_sybaseSettings = value; } /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetSybaseSettings(SybaseSettings&& value) { m_sybaseSettingsHasBeenSet = true; m_sybaseSettings = std::move(value); } /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithSybaseSettings(const SybaseSettings& value) { SetSybaseSettings(value); return *this;} /** *

Settings in JSON format for the source and target SAP ASE endpoint. For * information about other available settings, see Extra * connection attributes when using SAP ASE as a source for DMS and Extra * connection attributes when using SAP ASE as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithSybaseSettings(SybaseSettings&& value) { SetSybaseSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline const MicrosoftSQLServerSettings& GetMicrosoftSQLServerSettings() const{ return m_microsoftSQLServerSettings; } /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline bool MicrosoftSQLServerSettingsHasBeenSet() const { return m_microsoftSQLServerSettingsHasBeenSet; } /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetMicrosoftSQLServerSettings(const MicrosoftSQLServerSettings& value) { m_microsoftSQLServerSettingsHasBeenSet = true; m_microsoftSQLServerSettings = value; } /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline void SetMicrosoftSQLServerSettings(MicrosoftSQLServerSettings&& value) { m_microsoftSQLServerSettingsHasBeenSet = true; m_microsoftSQLServerSettings = std::move(value); } /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMicrosoftSQLServerSettings(const MicrosoftSQLServerSettings& value) { SetMicrosoftSQLServerSettings(value); return *this;} /** *

Settings in JSON format for the source and target Microsoft SQL Server * endpoint. For information about other available settings, see Extra * connection attributes when using SQL Server as a source for DMS and * Extra connection attributes when using SQL Server as a target for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithMicrosoftSQLServerSettings(MicrosoftSQLServerSettings&& value) { SetMicrosoftSQLServerSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline const IBMDb2Settings& GetIBMDb2Settings() const{ return m_iBMDb2Settings; } /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline bool IBMDb2SettingsHasBeenSet() const { return m_iBMDb2SettingsHasBeenSet; } /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline void SetIBMDb2Settings(const IBMDb2Settings& value) { m_iBMDb2SettingsHasBeenSet = true; m_iBMDb2Settings = value; } /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline void SetIBMDb2Settings(IBMDb2Settings&& value) { m_iBMDb2SettingsHasBeenSet = true; m_iBMDb2Settings = std::move(value); } /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithIBMDb2Settings(const IBMDb2Settings& value) { SetIBMDb2Settings(value); return *this;} /** *

Settings in JSON format for the source IBM Db2 LUW endpoint. For information * about other available settings, see Extra * connection attributes when using Db2 LUW as a source for DMS in the * Database Migration Service User Guide.

*/ inline CreateEndpointRequest& WithIBMDb2Settings(IBMDb2Settings&& value) { SetIBMDb2Settings(std::move(value)); return *this;} /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline const Aws::String& GetResourceIdentifier() const{ return m_resourceIdentifier; } /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; } /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline void SetResourceIdentifier(const Aws::String& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = value; } /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline void SetResourceIdentifier(Aws::String&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::move(value); } /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline void SetResourceIdentifier(const char* value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier.assign(value); } /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline CreateEndpointRequest& WithResourceIdentifier(const Aws::String& value) { SetResourceIdentifier(value); return *this;} /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline CreateEndpointRequest& WithResourceIdentifier(Aws::String&& value) { SetResourceIdentifier(std::move(value)); return *this;} /** *

A friendly name for the resource identifier at the end of the * EndpointArn response parameter that is returned in the created * Endpoint object. The value for this parameter can have up to 31 * characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, * it can't end with a hyphen or contain two consecutive hyphens, and can only * begin with a letter, such as Example-App-ARN1. For example, this * value might result in the EndpointArn value * arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you * don't specify a ResourceIdentifier value, DMS generates a default * identifier value for the end of EndpointArn.

*/ inline CreateEndpointRequest& WithResourceIdentifier(const char* value) { SetResourceIdentifier(value); return *this;} inline const DocDbSettings& GetDocDbSettings() const{ return m_docDbSettings; } inline bool DocDbSettingsHasBeenSet() const { return m_docDbSettingsHasBeenSet; } inline void SetDocDbSettings(const DocDbSettings& value) { m_docDbSettingsHasBeenSet = true; m_docDbSettings = value; } inline void SetDocDbSettings(DocDbSettings&& value) { m_docDbSettingsHasBeenSet = true; m_docDbSettings = std::move(value); } inline CreateEndpointRequest& WithDocDbSettings(const DocDbSettings& value) { SetDocDbSettings(value); return *this;} inline CreateEndpointRequest& WithDocDbSettings(DocDbSettings&& value) { SetDocDbSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target Redis endpoint.

*/ inline const RedisSettings& GetRedisSettings() const{ return m_redisSettings; } /** *

Settings in JSON format for the target Redis endpoint.

*/ inline bool RedisSettingsHasBeenSet() const { return m_redisSettingsHasBeenSet; } /** *

Settings in JSON format for the target Redis endpoint.

*/ inline void SetRedisSettings(const RedisSettings& value) { m_redisSettingsHasBeenSet = true; m_redisSettings = value; } /** *

Settings in JSON format for the target Redis endpoint.

*/ inline void SetRedisSettings(RedisSettings&& value) { m_redisSettingsHasBeenSet = true; m_redisSettings = std::move(value); } /** *

Settings in JSON format for the target Redis endpoint.

*/ inline CreateEndpointRequest& WithRedisSettings(const RedisSettings& value) { SetRedisSettings(value); return *this;} /** *

Settings in JSON format for the target Redis endpoint.

*/ inline CreateEndpointRequest& WithRedisSettings(RedisSettings&& value) { SetRedisSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline const GcpMySQLSettings& GetGcpMySQLSettings() const{ return m_gcpMySQLSettings; } /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline bool GcpMySQLSettingsHasBeenSet() const { return m_gcpMySQLSettingsHasBeenSet; } /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline void SetGcpMySQLSettings(const GcpMySQLSettings& value) { m_gcpMySQLSettingsHasBeenSet = true; m_gcpMySQLSettings = value; } /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline void SetGcpMySQLSettings(GcpMySQLSettings&& value) { m_gcpMySQLSettingsHasBeenSet = true; m_gcpMySQLSettings = std::move(value); } /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline CreateEndpointRequest& WithGcpMySQLSettings(const GcpMySQLSettings& value) { SetGcpMySQLSettings(value); return *this;} /** *

Settings in JSON format for the source GCP MySQL endpoint.

*/ inline CreateEndpointRequest& WithGcpMySQLSettings(GcpMySQLSettings&& value) { SetGcpMySQLSettings(std::move(value)); return *this;} /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline const TimestreamSettings& GetTimestreamSettings() const{ return m_timestreamSettings; } /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline bool TimestreamSettingsHasBeenSet() const { return m_timestreamSettingsHasBeenSet; } /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline void SetTimestreamSettings(const TimestreamSettings& value) { m_timestreamSettingsHasBeenSet = true; m_timestreamSettings = value; } /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline void SetTimestreamSettings(TimestreamSettings&& value) { m_timestreamSettingsHasBeenSet = true; m_timestreamSettings = std::move(value); } /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline CreateEndpointRequest& WithTimestreamSettings(const TimestreamSettings& value) { SetTimestreamSettings(value); return *this;} /** *

Settings in JSON format for the target Amazon Timestream endpoint.

*/ inline CreateEndpointRequest& WithTimestreamSettings(TimestreamSettings&& value) { SetTimestreamSettings(std::move(value)); return *this;} private: Aws::String m_endpointIdentifier; bool m_endpointIdentifierHasBeenSet = false; ReplicationEndpointTypeValue m_endpointType; bool m_endpointTypeHasBeenSet = false; Aws::String m_engineName; bool m_engineNameHasBeenSet = false; Aws::String m_username; bool m_usernameHasBeenSet = false; Aws::String m_password; bool m_passwordHasBeenSet = false; Aws::String m_serverName; bool m_serverNameHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_databaseName; bool m_databaseNameHasBeenSet = false; Aws::String m_extraConnectionAttributes; bool m_extraConnectionAttributesHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; Aws::String m_certificateArn; bool m_certificateArnHasBeenSet = false; DmsSslModeValue m_sslMode; bool m_sslModeHasBeenSet = false; Aws::String m_serviceAccessRoleArn; bool m_serviceAccessRoleArnHasBeenSet = false; Aws::String m_externalTableDefinition; bool m_externalTableDefinitionHasBeenSet = false; DynamoDbSettings m_dynamoDbSettings; bool m_dynamoDbSettingsHasBeenSet = false; S3Settings m_s3Settings; bool m_s3SettingsHasBeenSet = false; DmsTransferSettings m_dmsTransferSettings; bool m_dmsTransferSettingsHasBeenSet = false; MongoDbSettings m_mongoDbSettings; bool m_mongoDbSettingsHasBeenSet = false; KinesisSettings m_kinesisSettings; bool m_kinesisSettingsHasBeenSet = false; KafkaSettings m_kafkaSettings; bool m_kafkaSettingsHasBeenSet = false; ElasticsearchSettings m_elasticsearchSettings; bool m_elasticsearchSettingsHasBeenSet = false; NeptuneSettings m_neptuneSettings; bool m_neptuneSettingsHasBeenSet = false; RedshiftSettings m_redshiftSettings; bool m_redshiftSettingsHasBeenSet = false; PostgreSQLSettings m_postgreSQLSettings; bool m_postgreSQLSettingsHasBeenSet = false; MySQLSettings m_mySQLSettings; bool m_mySQLSettingsHasBeenSet = false; OracleSettings m_oracleSettings; bool m_oracleSettingsHasBeenSet = false; SybaseSettings m_sybaseSettings; bool m_sybaseSettingsHasBeenSet = false; MicrosoftSQLServerSettings m_microsoftSQLServerSettings; bool m_microsoftSQLServerSettingsHasBeenSet = false; IBMDb2Settings m_iBMDb2Settings; bool m_iBMDb2SettingsHasBeenSet = false; Aws::String m_resourceIdentifier; bool m_resourceIdentifierHasBeenSet = false; DocDbSettings m_docDbSettings; bool m_docDbSettingsHasBeenSet = false; RedisSettings m_redisSettings; bool m_redisSettingsHasBeenSet = false; GcpMySQLSettings m_gcpMySQLSettings; bool m_gcpMySQLSettingsHasBeenSet = false; TimestreamSettings m_timestreamSettings; bool m_timestreamSettingsHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws