[−][src]Struct rusoto_dms::CreateEndpointMessage
Fields
certificate_arn: Option<String>
The Amazon Resource Name (ARN) for the certificate.
database_name: Option<String>
The name of the endpoint database.
dms_transfer_settings: Option<DmsTransferSettings>
The settings in JSON format for the DMS transfer type of source endpoint.
Possible attributes include the following:
-
serviceAccessRoleArn
- The IAM role that has permission to access the Amazon S3 bucket. -
bucketName
- The name of the S3 bucket to use. -
compressionType
- An optional parameter to use GZIP to compress the target files. To use GZIP, set this value toNONE
(the default). To keep the files uncompressed, don't use this value.
Shorthand syntax for these attributes is as follows: ServiceAccessRoleArn=string,BucketName=string,CompressionType=string
JSON syntax for these attributes is as follows: { "ServiceAccessRoleArn": "string", "BucketName": "string", "CompressionType": "none"|"gzip" }
dynamo_db_settings: Option<DynamoDbSettings>
Settings in JSON format for the target Amazon DynamoDB endpoint. For more information about the available settings, see Using Object Mapping to Migrate Data to DynamoDB in the AWS Database Migration Service User Guide.
elasticsearch_settings: Option<ElasticsearchSettings>
Settings in JSON format for the target Elasticsearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using Elasticsearch as a Target for AWS DMS in the AWS Database Migration User Guide.
endpoint_identifier: String
The database endpoint identifier. Identifiers must begin with a letter; must contain only ASCII letters, digits, and hyphens; and must not end with a hyphen or contain two consecutive hyphens.
endpoint_type: String
The type of endpoint.
engine_name: String
The type of engine for the endpoint. Valid values, depending on the EndPointType
value, include mysql
, oracle
, postgres
, mariadb
, aurora
, aurora-postgresql
, redshift
, s3
, db2
, azuredb
, sybase
, dynamodb
, mongodb
, and sqlserver
.
external_table_definition: Option<String>
The external table definition.
extra_connection_attributes: Option<String>
Additional attributes associated with the connection.
kinesis_settings: Option<KinesisSettings>
Settings in JSON format for the target Amazon Kinesis Data Streams endpoint. For more information about the available settings, see Using Object Mapping to Migrate Data to a Kinesis Data Stream in the AWS Database Migration User Guide.
kms_key_id: Option<String>
The AWS KMS key identifier to use to encrypt the connection parameters. If you don't specify a value for the KmsKeyId
parameter, then AWS DMS uses your default encryption key. AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS Region.
mongo_db_settings: Option<MongoDbSettings>
Settings in JSON format for the source MongoDB endpoint. For more information about the available settings, see the configuration properties section in Using MongoDB as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.
password: Option<String>
The password to be used to log in to the endpoint database.
port: Option<i64>
The port used by the endpoint database.
redshift_settings: Option<RedshiftSettings>
s3_settings: Option<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 AWS DMS in the AWS Database Migration Service User Guide.
server_name: Option<String>
The name of the server where the endpoint database resides.
service_access_role_arn: Option<String>
The Amazon Resource Name (ARN) for the service access role that you want to use to create the endpoint.
ssl_mode: Option<String>
The Secure Sockets Layer (SSL) mode to use for the SSL connection. The SSL mode can be one of four values: none
, require
, verify-ca
, verify-full
. The default value is none
.
Tags to be added to the endpoint.
username: Option<String>
The user name to be used to log in to the endpoint database.
Trait Implementations
impl PartialEq<CreateEndpointMessage> for CreateEndpointMessage
[src]
fn eq(&self, other: &CreateEndpointMessage) -> bool
[src]
fn ne(&self, other: &CreateEndpointMessage) -> bool
[src]
impl Default for CreateEndpointMessage
[src]
fn default() -> CreateEndpointMessage
[src]
impl Clone for CreateEndpointMessage
[src]
fn clone(&self) -> CreateEndpointMessage
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateEndpointMessage
[src]
impl Serialize for CreateEndpointMessage
[src]
Auto Trait Implementations
impl Send for CreateEndpointMessage
impl Sync for CreateEndpointMessage
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self