Skip to content

Commit 98e9083

Browse files
Release v1.44.245 (2023-04-17) (#4803)
Release v1.44.245 (2023-04-17) === ### Service Client Updates * `service/appflow`: Updates service API and documentation * `service/drs`: Updates service API, documentation, and paginators * `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples * Documentation updates for DynamoDB API * `service/emr-serverless`: Updates service API and documentation * `service/internetmonitor`: Updates service API and documentation * `service/iotwireless`: Updates service API and documentation * `service/lambda`: Updates service API * Add Python 3.10 (python3.10) support to AWS Lambda
1 parent 7a17fe8 commit 98e9083

File tree

30 files changed

+2259
-412
lines changed

30 files changed

+2259
-412
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Release v1.44.245 (2023-04-17)
2+
===
3+
4+
### Service Client Updates
5+
* `service/appflow`: Updates service API and documentation
6+
* `service/drs`: Updates service API, documentation, and paginators
7+
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
8+
* Documentation updates for DynamoDB API
9+
* `service/emr-serverless`: Updates service API and documentation
10+
* `service/internetmonitor`: Updates service API and documentation
11+
* `service/iotwireless`: Updates service API and documentation
12+
* `service/lambda`: Updates service API
13+
* Add Python 3.10 (python3.10) support to AWS Lambda
14+
115
Release v1.44.244 (2023-04-14)
216
===
317

aws/endpoints/defaults.go

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.244"
8+
const SDKVersion = "1.44.245"

models/apis/appflow/2020-08-23/api-2.json

+41-7
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,12 @@
592592
"pattern":"\\S+",
593593
"sensitive":true
594594
},
595+
"ClientToken":{
596+
"type":"string",
597+
"max":256,
598+
"min":1,
599+
"pattern":"[ -~]+"
600+
},
595601
"ClusterIdentifier":{
596602
"type":"string",
597603
"max":512,
@@ -1002,7 +1008,11 @@
10021008
"connectorType":{"shape":"ConnectorType"},
10031009
"connectorLabel":{"shape":"ConnectorLabel"},
10041010
"connectionMode":{"shape":"ConnectionMode"},
1005-
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"}
1011+
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"},
1012+
"clientToken":{
1013+
"shape":"ClientToken",
1014+
"idempotencyToken":true
1015+
}
10061016
}
10071017
},
10081018
"CreateConnectorProfileResponse":{
@@ -1029,7 +1039,11 @@
10291039
"destinationFlowConfigList":{"shape":"DestinationFlowConfigList"},
10301040
"tasks":{"shape":"Tasks"},
10311041
"tags":{"shape":"TagMap"},
1032-
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"}
1042+
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"},
1043+
"clientToken":{
1044+
"shape":"ClientToken",
1045+
"idempotencyToken":true
1046+
}
10331047
}
10341048
},
10351049
"CreateFlowResponse":{
@@ -2475,7 +2489,11 @@
24752489
"connectorLabel":{"shape":"ConnectorLabel"},
24762490
"description":{"shape":"Description"},
24772491
"connectorProvisioningType":{"shape":"ConnectorProvisioningType"},
2478-
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"}
2492+
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"},
2493+
"clientToken":{
2494+
"shape":"ClientToken",
2495+
"idempotencyToken":true
2496+
}
24792497
}
24802498
},
24812499
"RegisterConnectorResponse":{
@@ -3058,7 +3076,11 @@
30583076
"type":"structure",
30593077
"required":["flowName"],
30603078
"members":{
3061-
"flowName":{"shape":"FlowName"}
3079+
"flowName":{"shape":"FlowName"},
3080+
"clientToken":{
3081+
"shape":"ClientToken",
3082+
"idempotencyToken":true
3083+
}
30623084
}
30633085
},
30643086
"StartFlowResponse":{
@@ -3358,7 +3380,11 @@
33583380
"members":{
33593381
"connectorProfileName":{"shape":"ConnectorProfileName"},
33603382
"connectionMode":{"shape":"ConnectionMode"},
3361-
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"}
3383+
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"},
3384+
"clientToken":{
3385+
"shape":"ClientToken",
3386+
"idempotencyToken":true
3387+
}
33623388
}
33633389
},
33643390
"UpdateConnectorProfileResponse":{
@@ -3373,7 +3399,11 @@
33733399
"members":{
33743400
"connectorLabel":{"shape":"ConnectorLabel"},
33753401
"description":{"shape":"Description"},
3376-
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"}
3402+
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"},
3403+
"clientToken":{
3404+
"shape":"ClientToken",
3405+
"idempotencyToken":true
3406+
}
33773407
}
33783408
},
33793409
"UpdateConnectorRegistrationResponse":{
@@ -3398,7 +3428,11 @@
33983428
"sourceFlowConfig":{"shape":"SourceFlowConfig"},
33993429
"destinationFlowConfigList":{"shape":"DestinationFlowConfigList"},
34003430
"tasks":{"shape":"Tasks"},
3401-
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"}
3431+
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"},
3432+
"clientToken":{
3433+
"shape":"ClientToken",
3434+
"idempotencyToken":true
3435+
}
34023436
}
34033437
},
34043438
"UpdateFlowResponse":{

models/apis/appflow/2020-08-23/docs-2.json

+12
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,18 @@
341341
"ZendeskConnectorProfileCredentials$clientSecret": "<p> The client secret used by the OAuth client to authenticate to the authorization server. </p>"
342342
}
343343
},
344+
"ClientToken": {
345+
"base": null,
346+
"refs": {
347+
"CreateConnectorProfileRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>CreateConnectorProfile</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>CreateConnectorProfile</code>. The token is active for 8 hours.</p>",
348+
"CreateFlowRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>CreateFlow</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>CreateFlow</code>. The token is active for 8 hours.</p>",
349+
"RegisterConnectorRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>RegisterConnector</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>RegisterConnector</code>. The token is active for 8 hours.</p>",
350+
"StartFlowRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>StartFlow</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs for flows that run on a schedule or based on an event. However, the error doesn't occur for flows that run on demand. You set the conditions that initiate your flow for the <code>triggerConfig</code> parameter.</p> <p>If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>StartFlow</code>. The token is active for 8 hours.</p>",
351+
"UpdateConnectorProfileRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>UpdateConnectorProfile</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>UpdateConnectorProfile</code>. The token is active for 8 hours.</p>",
352+
"UpdateConnectorRegistrationRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>UpdateConnectorRegistration</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>UpdateConnectorRegistration</code>. The token is active for 8 hours.</p>",
353+
"UpdateFlowRequest$clientToken": "<p>The <code>clientToken</code> parameter is an idempotency token. It ensures that your <code>UpdateFlow</code> request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same <code>clientToken</code> parameter value.</p> <p>If you omit a <code>clientToken</code> value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.</p> <p>If you specify input parameters that differ from your first request, an error occurs. If you use a different value for <code>clientToken</code>, Amazon AppFlow considers it a new call to <code>UpdateFlow</code>. The token is active for 8 hours.</p>"
354+
}
355+
},
344356
"ClusterIdentifier": {
345357
"base": null,
346358
"refs": {

0 commit comments

Comments
 (0)