aws-dax-go icon indicating copy to clipboard operation
aws-dax-go copied to clipboard

AWS DAX SDK for the Go programming language. https://aws.amazon.com/dynamodb/dax

Results 21 aws-dax-go issues
Sort by recently updated
recently updated
newest added

I'd like to propose including the ANTLR grammar file (.g4) along with the generated source files in our version control system. This inclusion offers several benefits that can significantly improve...

The [1.51.4 release of the aws-go-sdk](https://github.com/aws/aws-sdk-go/commit/fb4c556a07d40bcc5dcc654fa3d58a56822feb08#diff-7079cf4d8390f029e40fff0af783c201db0882743f5805151f03caab828c686d) includes updates to the ddb interface that are not implemented by the DAX client. The following methods have been added: ``` DeleteResourcePolicy(*dynamodb.DeleteResourcePolicyInput) (*dynamodb.DeleteResourcePolicyOutput, error)...

[Issue 52](https://github.com/aws/aws-dax-go/issues/52) This PR creates placeholders values for the DynamoDB interface released in the [v.15.0](https://github.com/aws/aws-sdk-go/pull/5147/files) version of aws-sdk-go. By submitting this pull request, I confirm that my contribution is made...

Are there any plans to release a version of this client that support `aws-sdk-go-v2` ? At present it requires plain old `aws-sdk-go` We had work simultaneously underway to upgrade our...

enhancement

*Issue #, if available:* N/A *Description of changes:* - Remove `go dep` which was [deprecated in 2020](https://github.com/golang/dep) - Update to Go 1.20 - Add makefile - Add Github workflow for...

*Issue #, if available:* #2 *Description of changes:* use [aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) in the entire code. If you have any questions, please feel free to ask. ## Summary of the changes Although...

The following functions have been introduced to the `dynamodbiface.DynamoDBAPI` interface in [version 1.50.0](https://github.com/aws/aws-sdk-go/commit/63e7f600c268b0ef0c1e700b956097f4b18795f9#diff-7079cf4d8390f029e40fff0af783c201db0882743f5805151f03caab828c686dR284): ``` UpdateKinesisStreamingDestination(*dynamodb.UpdateKinesisStreamingDestinationInput) (*dynamodb.UpdateKinesisStreamingDestinationOutput, error) UpdateKinesisStreamingDestinationWithContext(aws.Context, *dynamodb.UpdateKinesisStreamingDestinationInput, ...request.Option) (*dynamodb.UpdateKinesisStreamingDestinationOutput, error) UpdateKinesisStreamingDestinationRequest(*dynamodb.UpdateKinesisStreamingDestinationInput) (*request.Request, *dynamodb.UpdateKinesisStreamingDestinationOutput) ``` Without these functions implemented,...

*Issue* Make build produces following error ``` curl "https://raw.githubusercontent.com/golang/dep/master/install.sh" | sh % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100...

*Issue #, if available:* *Description of changes:* Invoking the context cancel function on error in `requestOptions` to fix context leak. By submitting this pull request, I confirm that my contribution...

We wanted to track request retries and errors in our log by setting log level to aws.LogDebugWithRequestRetries and aws.LogDebugWithRequestErrors ``` aws.NewConfig().WithLogger(logger).WithLogLevel(aws.LogDebugWithRequestRetries | aws.LogDebugWithRequestErrors) ``` However, this will add noises in...