public static interface CfnEndpoint.RedisSettingsProperty
This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Specifying endpoint settings for Redis as a target in the AWS Database Migration Service User Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.dms.*; RedisSettingsProperty redisSettingsProperty = RedisSettingsProperty.builder() .authPassword("authPassword") .authType("authType") .authUserName("authUserName") .port(123) .serverName("serverName") .sslCaCertificateArn("sslCaCertificateArn") .sslSecurityProtocol("sslSecurityProtocol") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEndpoint.RedisSettingsProperty.Builder
A builder for
CfnEndpoint.RedisSettingsProperty |
static class |
CfnEndpoint.RedisSettingsProperty.Jsii$Proxy
An implementation for
CfnEndpoint.RedisSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEndpoint.RedisSettingsProperty.Builder |
builder() |
default java.lang.String |
getAuthPassword()
The password provided with the `auth-role` and `auth-token` options of the `AuthType` setting for a Redis target endpoint.
|
default java.lang.String |
getAuthType()
The type of authentication to perform when connecting to a Redis target.
|
default java.lang.String |
getAuthUserName()
The user name provided with the `auth-role` option of the `AuthType` setting for a Redis target endpoint.
|
default java.lang.Number |
getPort()
Transmission Control Protocol (TCP) port for the endpoint.
|
default java.lang.String |
getServerName()
Fully qualified domain name of the endpoint.
|
default java.lang.String |
getSslCaCertificateArn()
The Amazon Resource Name (ARN) for the certificate authority (CA) that DMS uses to connect to your Redis target endpoint.
|
default java.lang.String |
getSslSecurityProtocol()
The connection to a Redis target endpoint using Transport Layer Security (TLS).
|
default java.lang.String getAuthPassword()
default java.lang.String getAuthType()
Options include none
, auth-token
, and auth-role
. The auth-token
option requires an AuthPassword
value to be provided. The auth-role
option requires AuthUserName
and AuthPassword
values to be provided.
default java.lang.String getAuthUserName()
default java.lang.Number getPort()
default java.lang.String getServerName()
default java.lang.String getSslCaCertificateArn()
default java.lang.String getSslSecurityProtocol()
Valid values include plaintext
and ssl-encryption
. The default is ssl-encryption
. The ssl-encryption
option makes an encrypted connection. Optionally, you can identify an Amazon Resource Name (ARN) for an SSL certificate authority (CA) using the SslCaCertificateArn
setting. If an ARN isn't given for a CA, DMS uses the Amazon root CA.
The plaintext
option doesn't provide Transport Layer Security (TLS) encryption for traffic between endpoint and database.
static CfnEndpoint.RedisSettingsProperty.Builder builder()