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() }