public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonRDSConfig config = new AmazonRDSConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonRDSClient client = new AmazonRDSClient(creds, config);

            DescribeDBSnapshotsResponse resp = new DescribeDBSnapshotsResponse();

            do
            {
                DescribeDBSnapshotsRequest req = new DescribeDBSnapshotsRequest
                {
                    Marker = resp.Marker
                    ,
                    MaxRecords = maxItems
                };

                resp = client.DescribeDBSnapshots(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.DBSnapshots)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Marker));
        }