Skip to content

Commit

Permalink
Release v1.44.245 (2023-04-17) (#4803)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aws-sdk-go-automation authored Apr 17, 2023
1 parent 7a17fe8 commit 98e9083
Show file tree
Hide file tree
Showing 30 changed files with 2,259 additions and 412 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
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

Release v1.44.244 (2023-04-14)
===

Expand Down
15 changes: 15 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.244"
const SDKVersion = "1.44.245"
48 changes: 41 additions & 7 deletions models/apis/appflow/2020-08-23/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,12 @@
"pattern":"\\S+",
"sensitive":true
},
"ClientToken":{
"type":"string",
"max":256,
"min":1,
"pattern":"[ -~]+"
},
"ClusterIdentifier":{
"type":"string",
"max":512,
Expand Down Expand Up @@ -1002,7 +1008,11 @@
"connectorType":{"shape":"ConnectorType"},
"connectorLabel":{"shape":"ConnectorLabel"},
"connectionMode":{"shape":"ConnectionMode"},
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"}
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"CreateConnectorProfileResponse":{
Expand All @@ -1029,7 +1039,11 @@
"destinationFlowConfigList":{"shape":"DestinationFlowConfigList"},
"tasks":{"shape":"Tasks"},
"tags":{"shape":"TagMap"},
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"}
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"CreateFlowResponse":{
Expand Down Expand Up @@ -2475,7 +2489,11 @@
"connectorLabel":{"shape":"ConnectorLabel"},
"description":{"shape":"Description"},
"connectorProvisioningType":{"shape":"ConnectorProvisioningType"},
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"}
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"RegisterConnectorResponse":{
Expand Down Expand Up @@ -3058,7 +3076,11 @@
"type":"structure",
"required":["flowName"],
"members":{
"flowName":{"shape":"FlowName"}
"flowName":{"shape":"FlowName"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"StartFlowResponse":{
Expand Down Expand Up @@ -3358,7 +3380,11 @@
"members":{
"connectorProfileName":{"shape":"ConnectorProfileName"},
"connectionMode":{"shape":"ConnectionMode"},
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"}
"connectorProfileConfig":{"shape":"ConnectorProfileConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"UpdateConnectorProfileResponse":{
Expand All @@ -3373,7 +3399,11 @@
"members":{
"connectorLabel":{"shape":"ConnectorLabel"},
"description":{"shape":"Description"},
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"}
"connectorProvisioningConfig":{"shape":"ConnectorProvisioningConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"UpdateConnectorRegistrationResponse":{
Expand All @@ -3398,7 +3428,11 @@
"sourceFlowConfig":{"shape":"SourceFlowConfig"},
"destinationFlowConfigList":{"shape":"DestinationFlowConfigList"},
"tasks":{"shape":"Tasks"},
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"}
"metadataCatalogConfig":{"shape":"MetadataCatalogConfig"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"UpdateFlowResponse":{
Expand Down
12 changes: 12 additions & 0 deletions models/apis/appflow/2020-08-23/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,18 @@
"ZendeskConnectorProfileCredentials$clientSecret": "<p> The client secret used by the OAuth client to authenticate to the authorization server. </p>"
}
},
"ClientToken": {
"base": null,
"refs": {
"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>",
"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>",
"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>",
"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>",
"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>",
"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>",
"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>"
}
},
"ClusterIdentifier": {
"base": null,
"refs": {
Expand Down
Loading

0 comments on commit 98e9083

Please sign in to comment.