Skip to content

Commit 83c1986

Browse files
normjCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 381450b commit 83c1986

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Commands/Settings/RunCommandSettings.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ public sealed class RunCommandSettings : CommandSettings
8282
[Description("The configuration for the SQS event source. The format of the config is a comma delimited key pairs. For example \"QueueUrl=<queue-url>,FunctionName=<function-name>,VisibilityTimeout=100\". Possible keys are: BatchSize, DisableMessageDelete, FunctionName, LambdaRuntimeApi, Profile, QueueUrl, Region, VisibilityTimeout")]
8383
public string? SQSEventSourceConfig { get; set; }
8484

85-
86-
/// <summary>
87-
/// The configuration for the DynamoDB Streams event source. The format of the config is a comma delimited key pairs. For example "TableName=my-table,FunctionName=function-name,BatchSize=100".
88-
/// Possible keys are: BatchSize, FunctionName, LambdaRuntimeApi, Profile, Region, TableName
89-
/// </summary>
90-
[CommandOption("--dynamodbstreams-eventsource-config <CONFIG>")]
91-
[Description("The configuration for the DynamoDB Streams event source. The format of the config is a comma delimited key pairs. For example \"TableName=<table-name>,FunctionName=<function-name>,BatchSize=100\". Possible keys are: BatchSize, FunctionName, LambdaRuntimeApi, Profile, Region, TableName")]
92-
public string? DynamoDBStreamsEventSourceConfig { get; set; }
85+
86+
/// <summary>
87+
/// The configuration for the DynamoDB Streams event source. The config can be provided as comma delimited key pairs, a JSON object, a JSON array, or a file path to a JSON configuration file. For example "TableName=my-table,FunctionName=function-name,BatchSize=100".
88+
/// Possible keys are: BatchSize, FunctionName, LambdaRuntimeApi, PollingIntervalMs, Profile, Region, TableName
89+
/// </summary>
90+
[CommandOption("--dynamodbstreams-eventsource-config <CONFIG>")]
91+
[Description("The configuration for the DynamoDB Streams event source. The config can be provided as comma delimited key pairs, a JSON object, a JSON array, or a file path to a JSON configuration file. For example \"TableName=<table-name>,FunctionName=<function-name>,BatchSize=100\". Possible keys are: BatchSize, FunctionName, LambdaRuntimeApi, PollingIntervalMs, Profile, Region, TableName")]
92+
public string? DynamoDBStreamsEventSourceConfig { get; set; }
9393
/// <summary>
9494
/// The absolute path used to save global settings and saved requests. You will need to specify a path in order to enable saving global settings and requests.
9595
/// </summary>

0 commit comments

Comments
 (0)