aws-memorydb-user/src/main/java/software/amazon/memorydb/user/ReadHandler.java [44:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ProgressEvent<ResourceModel, CallbackContext> listTags(
        AmazonWebServicesClientProxy proxy,
        ProgressEvent<ResourceModel, CallbackContext> progress,
        ProxyClient<MemoryDbClient> proxyClient
    ) {
        return proxy
            .initiate("AWS-MemoryDB-User::ListTags", proxyClient, progress.getResourceModel(), progress.getCallbackContext())
            .translateToServiceRequest(Translator::translateToListTagsRequest)
            .makeServiceCall((awsRequest, client) -> handleExceptions(() -> client.injectCredentialsAndInvokeV2(awsRequest, client.client()::listTags)))
            .done( (listTagsRequest, listTagsResponse, proxyInvocation, resourceModel, context) -> {
                    resourceModel.setTags(Translator.translateTags(listTagsResponse.tagList()));
                    return ProgressEvent.progress(resourceModel, context);
                }
            );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-memorydb-acl/src/main/java/software/amazon/memorydb/acl/ReadHandler.java [43:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ProgressEvent<ResourceModel, CallbackContext> listTags(
        AmazonWebServicesClientProxy proxy,
        ProgressEvent<ResourceModel, CallbackContext> progress,
        ProxyClient<MemoryDbClient> proxyClient
    ) {
        return proxy
            .initiate("AWS-MemoryDB-ACL::ListTags", proxyClient, progress.getResourceModel(), progress.getCallbackContext())
            .translateToServiceRequest(Translator::translateToListTagsRequest)
            .makeServiceCall((awsRequest, client) -> handleExceptions(() -> client.injectCredentialsAndInvokeV2(awsRequest, client.client()::listTags)))
            .done( (listTagsRequest, listTagsResponse, proxyInvocation, resourceModel, context) -> {
                    resourceModel.setTags(Translator.translateTags(listTagsResponse.tagList()));
                    return ProgressEvent.progress(resourceModel, context);
                }
            );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



