Interface CfnEndpoint.RedisSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.RedisSettingsProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.RedisSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a Redis target endpoint.

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();
 

See Also: