Skip to content

Commit 34b1332

Browse files
authored
Add comment about using SigV4 authentication where possible. (#4298)
* Add comment about using SigV4 authentication where possible. * Implemented editor suggestion on Cassandra wrapper.
1 parent 3c7ff0e commit 34b1332

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

dotnetv3/Keyspaces/Actions/HelloKeyspaces.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class HelloKeyspaces
1010

1111
static async Task Main(string[] args)
1212
{
13-
// Set up dependency injection for the Amazon service.
13+
// Set up dependency injection for Amazon Keyspaces (for Apache Cassandra).
1414
using var host = Host.CreateDefaultBuilder(args)
1515
.ConfigureLogging(logging =>
1616
logging.AddFilter("System", LogLevel.Debug)

dotnetv3/Keyspaces/Scenarios/CassandraWrapper.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
namespace KeyspacesScenario;
1010

1111
/// <summary>
12-
/// Class to perform CRUD methods on a Keyspaces (for Apache Cassandra) database.
12+
/// Class to perform CRUD methods on an Amazon Keyspaces (for Apache Cassandra) database.
13+
///
14+
/// NOTE: This sample uses a plain text authenticator for example purposes only.
15+
/// Recommended best practice is to use a SigV4 authentication plugin, if available.
1316
/// </summary>
1417
public class CassandraWrapper
1518
{

0 commit comments

Comments
 (0)