Skip to content

Commit f8bccd3

Browse files
committed
Update services based on v1.44.42 of AWS Go SDK
Reference: https://github.com/aws/aws-sdk-go/releases/tag/v1.44.42
1 parent 1711095 commit f8bccd3

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

.latest-tag-aws-sdk-go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.44.41
1+
v1.44.42

lib/aws/generated/glue.ex

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,6 +1119,30 @@ defmodule AWS.Glue do
11191119
Request.request_post(client, metadata(), "ListCrawlers", input, options)
11201120
end
11211121

1122+
@doc """
1123+
Returns all the crawls of a specified crawler.
1124+
1125+
Returns only the crawls that have occurred since the launch date of the crawler
1126+
history feature, and only retains up to 12 months of crawls. Older crawls will
1127+
not be returned.
1128+
1129+
You may use this API to:
1130+
1131+
* Retrive all the crawls of a specified crawler.
1132+
1133+
* Retrieve all the crawls of a specified crawler within a limited
1134+
count.
1135+
1136+
* Retrieve all the crawls of a specified crawler in a specific time
1137+
range.
1138+
1139+
* Retrieve all the crawls of a specified crawler with a particular
1140+
state, crawl ID, or DPU hour value.
1141+
"""
1142+
def list_crawls(%Client{} = client, input, options \\ []) do
1143+
Request.request_post(client, metadata(), "ListCrawls", input, options)
1144+
end
1145+
11221146
@doc """
11231147
Lists all the custom patterns that have been created.
11241148
"""

lib/aws/generated/rds_data.ex

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ defmodule AWS.RDSData do
4444
If a call isn't part of a transaction because it doesn't include the
4545
`transactionID` parameter, changes that result from the call are committed
4646
automatically.
47+
48+
There isn't a fixed upper limit on the number of parameter sets. However, the
49+
maximum size of the HTTP request submitted through the Data API is 4 MiB. If the
50+
request exceeds this limit, the Data API returns an error and doesn't process
51+
the request. This 4-MiB limit includes the size of the HTTP headers and the JSON
52+
notation in the request. Thus, the number of parameter sets that you can include
53+
depends on a combination of factors, such as the size of the SQL statement and
54+
the size of each parameter set.
55+
56+
The response size limit is 1 MiB. If the call returns more than 1 MiB of
57+
response data, the call is terminated.
4758
"""
4859
def batch_execute_statement(%Client{} = client, input, options \\ []) do
4960
url_path = "/BatchExecute"

0 commit comments

Comments
 (0)