aws-memorydb-user/src/main/java/software/amazon/memorydb/user/UpdateHandler.java [60:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ProgressEvent<ResourceModel, CallbackContext> updateTags(
        AmazonWebServicesClientProxy proxy,
        ProgressEvent<ResourceModel, CallbackContext> progress,
        ResourceHandlerRequest<ResourceModel> request,
        ProxyClient<MemoryDbClient> proxyClient
    ) {
        if (!request.getPreviousResourceTags().equals(request.getDesiredResourceTags())) {
            return progress
                .then(o ->
                    handleExceptions(() -> {
                        handleTagging(proxy, proxyClient,  request.getDesiredResourceTags(), progress.getResourceModel());
                        return ProgressEvent.progress(o.getResourceModel(), o.getCallbackContext());
                    })
                );
        } else {
            return progress;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-memorydb-acl/src/main/java/software/amazon/memorydb/acl/UpdateHandler.java [111:128]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ProgressEvent<ResourceModel, CallbackContext> updateTags(
        AmazonWebServicesClientProxy proxy,
        ProgressEvent<ResourceModel, CallbackContext> progress,
        ResourceHandlerRequest<ResourceModel> request,
        ProxyClient<MemoryDbClient> proxyClient
    ) {
        if (!request.getPreviousResourceTags().equals(request.getDesiredResourceTags())) {
            return progress
                .then(o ->
                    handleExceptions(() -> {
                        handleTagging(proxy, proxyClient,  request.getDesiredResourceTags(), progress.getResourceModel());
                        return ProgressEvent.progress(o.getResourceModel(), o.getCallbackContext());
                    })
                );
        } else {
            return progress;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



