We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d5d8b commit b8b2ceeCopy full SHA for b8b2cee
README.md
@@ -106,11 +106,12 @@ var passwordConfig = new StandaloneClientConfigurationBuilder()
106
107
using var passwordClient = await GlideClient.CreateClient(passwordConfig);
108
109
-// IAM authentication.
+// IAM authentication with TLS.
110
var iamAuthConfig = new IamAuthConfig("my-cluster", ServiceType.ElastiCache, "us-east-1");
111
var iamConfig = new ClusterClientConfigurationBuilder()
112
.WithAddress(host, port)
113
.WithAuthentication("username", iamAuthConfig)
114
+ .WithTls(true)
115
.Build();
116
117
using var iamClient = await GlideClient.CreateClient(iamConfig);
0 commit comments