From c078ea488218effc61f974b78d92c1f07dddcb37 Mon Sep 17 00:00:00 2001 From: dillktuh Date: Tue, 27 Feb 2024 14:48:49 -0800 Subject: [PATCH] fix: updating the dax interface to match the DynamoDB interface for the aws-sdk-go release v1.50.0 --- dax/api.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dax/api.go b/dax/api.go index ae4354f..c513c7f 100644 --- a/dax/api.go +++ b/dax/api.go @@ -901,6 +901,17 @@ func (d *Dax) UpdateGlobalTableSettingsRequest(*dynamodb.UpdateGlobalTableSettin return newRequestForUnimplementedOperation(), &dynamodb.UpdateGlobalTableSettingsOutput{} } +func (d *Dax) UpdateKinesisStreamingDestination(*dynamodb.UpdateKinesisStreamingDestinationInput) (*dynamodb.UpdateKinesisStreamingDestinationOutput, error) { + return nil, d.unImpl() +} +func (d *Dax) UpdateKinesisStreamingDestinationWithContext(aws.Context, *dynamodb.UpdateKinesisStreamingDestinationInput, ...request.Option) (*dynamodb.UpdateKinesisStreamingDestinationOutput, error) { + return nil, d.unImpl() +} + +func (d *Dax) UpdateKinesisStreamingDestinationRequest(*dynamodb.UpdateKinesisStreamingDestinationInput) (*request.Request, *dynamodb.UpdateKinesisStreamingDestinationOutput) { + return nil, nil +} + func (d *Dax) UpdateTable(*dynamodb.UpdateTableInput) (*dynamodb.UpdateTableOutput, error) { return nil, d.unImpl() }