From 7b6c5cbc0bdca69ad43702dcf84cfc8edf3ebbae Mon Sep 17 00:00:00 2001 From: Praveen P Date: Tue, 21 Jan 2020 18:04:15 +0530 Subject: [PATCH] add method for redshift --- src/processor/connector/snapshot_aws.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/processor/connector/snapshot_aws.py b/src/processor/connector/snapshot_aws.py index 0fab1f9c..3a793196 100644 --- a/src/processor/connector/snapshot_aws.py +++ b/src/processor/connector/snapshot_aws.py @@ -498,7 +498,8 @@ def _get_function_kwargs(arn_str, function_name, existing_json): return { 'FunctionName': resource_id } - elif client_str == "redshift" and function_name == "describe_clusters": + elif client_str == "redshift" and function_name in ["describe_clusters",\ + "describe_logging_status"]: return { 'ClusterIdentifier': resource_id }