Skip to content

Commit

Permalink
Release v1.44.256 (2023-05-03) (#4823)
Browse files Browse the repository at this point in the history
Release v1.44.256 (2023-05-03)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/ec2`: Updates service paginators
  * Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings
* `service/inspector2`: Updates service API and documentation
* `service/iottwinmaker`: Updates service API and documentation
* `service/network-firewall`: Updates service API and documentation
* `service/opensearch`: Updates service API and documentation
* `service/wellarchitected`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed May 3, 2023
1 parent fba2ac8 commit cebecc8
Show file tree
Hide file tree
Showing 33 changed files with 3,969 additions and 2,538 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.44.256 (2023-05-03)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/ec2`: Updates service paginators
* Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings
* `service/inspector2`: Updates service API and documentation
* `service/iottwinmaker`: Updates service API and documentation
* `service/network-firewall`: Updates service API and documentation
* `service/opensearch`: Updates service API and documentation
* `service/wellarchitected`: Updates service API and documentation

Release v1.44.255 (2023-05-02)
===

Expand Down
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.255"
const SDKVersion = "1.44.256"
14 changes: 12 additions & 2 deletions models/apis/appsync/2017-07-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,8 @@
"tags":{"shape":"TagMap"},
"additionalAuthenticationProviders":{"shape":"AdditionalAuthenticationProviders"},
"xrayEnabled":{"shape":"Boolean"},
"lambdaAuthorizerConfig":{"shape":"LambdaAuthorizerConfig"}
"lambdaAuthorizerConfig":{"shape":"LambdaAuthorizerConfig"},
"visibility":{"shape":"GraphQLApiVisibility"}
}
},
"CreateGraphqlApiResponse":{
Expand Down Expand Up @@ -1955,6 +1956,13 @@
"type":{"shape":"Type"}
}
},
"GraphQLApiVisibility":{
"type":"string",
"enum":[
"GLOBAL",
"PRIVATE"
]
},
"GraphQLSchemaException":{
"type":"structure",
"members":{
Expand All @@ -1978,7 +1986,9 @@
"additionalAuthenticationProviders":{"shape":"AdditionalAuthenticationProviders"},
"xrayEnabled":{"shape":"Boolean"},
"wafWebAclArn":{"shape":"String"},
"lambdaAuthorizerConfig":{"shape":"LambdaAuthorizerConfig"}
"lambdaAuthorizerConfig":{"shape":"LambdaAuthorizerConfig"},
"dns":{"shape":"MapOfStringToString"},
"visibility":{"shape":"GraphQLApiVisibility"}
}
},
"GraphqlApis":{
Expand Down
14 changes: 11 additions & 3 deletions models/apis/appsync/2017-07-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,13 @@
"refs": {
}
},
"GraphQLApiVisibility": {
"base": null,
"refs": {
"CreateGraphqlApiRequest$visibility": "<p>Sets the value of the GraphQL API to public (<code>GLOBAL</code>) or private (<code>PRIVATE</code>). If no value is provided, the visibility will be set to <code>GLOBAL</code> by default. This value cannot be changed once the API has been created.</p>",
"GraphqlApi$visibility": "<p>Sets the value of the GraphQL API to public (<code>GLOBAL</code>) or private (<code>PRIVATE</code>). If no value is provided, the visibility will be set to <code>GLOBAL</code> by default. This value cannot be changed once the API has been created.</p>"
}
},
"GraphQLSchemaException": {
"base": "<p>The GraphQL schema is not valid.</p>",
"refs": {
Expand Down Expand Up @@ -978,7 +985,8 @@
"MapOfStringToString": {
"base": null,
"refs": {
"GraphqlApi$uris": "<p>The URIs.</p>"
"GraphqlApi$uris": "<p>The URIs.</p>",
"GraphqlApi$dns": "<p>The DNS records for the API.</p>"
}
},
"MappingTemplate": {
Expand Down Expand Up @@ -1203,7 +1211,7 @@
"ApiKeyValidityOutOfBoundsException$message": null,
"ApiLimitExceededException$message": null,
"AppSyncRuntime$runtimeVersion": "<p>The <code>version</code> of the runtime to use. Currently, the only allowed version is <code>1.0.0</code>.</p>",
"AssociateApiRequest$apiId": "<p>The API ID.</p>",
"AssociateApiRequest$apiId": "<p>The API ID. Private APIs can not be associated with custom domains.</p>",
"AwsIamConfig$signingRegion": "<p>The signing Amazon Web Services Region for IAM authorization.</p>",
"AwsIamConfig$signingServiceName": "<p>The signing service name for IAM authorization.</p>",
"CachingKeys$member": null,
Expand Down Expand Up @@ -1332,7 +1340,7 @@
"TTL": {
"base": null,
"refs": {
"LambdaAuthorizerConfig$authorizerResultTtlInSeconds": "<p>The number of seconds a response should be cached for. The default is 5 minutes (300 seconds). The Lambda function can override this by returning a <code>ttlOverride</code> key in its response. A value of 0 disables caching of responses.</p>"
"LambdaAuthorizerConfig$authorizerResultTtlInSeconds": "<p>The number of seconds a response should be cached for. The default is 0 seconds, which disables caching. If you don't specify a value for <code>authorizerResultTtlInSeconds</code>, the default value is used. The maximum value is one hour (3600 seconds). The Lambda function can override this by returning a <code>ttlOverride</code> key in its response.</p>"
}
},
"TagKey": {
Expand Down
Loading

0 comments on commit cebecc8

Please sign in to comment.