Skip to content

Commit

Permalink
Release v1.45.16 (2023-09-25) (#4999)
Browse files Browse the repository at this point in the history
Release v1.45.16 (2023-09-25)
===

### Service Client Updates
* `service/amplifyuibuilder`: Updates service API and documentation
* `service/chime-sdk-media-pipelines`: Updates service API, documentation, and paginators
* `service/emr-serverless`: Updates service API and documentation
* `service/finspace-data`: Updates service API and documentation
* `service/quicksight`: Updates service API and documentation
  * Added ability to tag users upon creation.
* `service/ssm`: Updates service API and documentation
  * This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.
* `service/wafv2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Sep 25, 2023
1 parent 2ac2bb7 commit b011fcd
Show file tree
Hide file tree
Showing 32 changed files with 4,477 additions and 1,086 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,17 @@
Release v1.45.16 (2023-09-25)
===

### Service Client Updates
* `service/amplifyuibuilder`: Updates service API and documentation
* `service/chime-sdk-media-pipelines`: Updates service API, documentation, and paginators
* `service/emr-serverless`: Updates service API and documentation
* `service/finspace-data`: Updates service API and documentation
* `service/quicksight`: Updates service API and documentation
* Added ability to tag users upon creation.
* `service/ssm`: Updates service API and documentation
* This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.
* `service/wafv2`: Updates service API and documentation

Release v1.45.15 (2023-09-22)
===

Expand Down
10 changes: 10 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.45.15"
const SDKVersion = "1.45.16"
24 changes: 22 additions & 2 deletions models/apis/amplifyuibuilder/2021-08-11/api-2.json
Expand Up @@ -423,6 +423,19 @@
"type":"boolean",
"box":true
},
"CodegenDependencies":{
"type":"list",
"member":{"shape":"CodegenDependency"}
},
"CodegenDependency":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"supportedVersion":{"shape":"String"},
"isSemVer":{"shape":"Boolean"},
"reason":{"shape":"String"}
}
},
"CodegenFeatureFlags":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -563,7 +576,8 @@
"asset":{"shape":"CodegenJobAsset"},
"tags":{"shape":"Tags"},
"createdAt":{"shape":"SyntheticTimestamp_date_time"},
"modifiedAt":{"shape":"SyntheticTimestamp_date_time"}
"modifiedAt":{"shape":"SyntheticTimestamp_date_time"},
"dependencies":{"shape":"CodegenDependencies"}
}
},
"CodegenJobAsset":{
Expand Down Expand Up @@ -1979,6 +1993,11 @@
},
"payload":"body"
},
"ReactCodegenDependencies":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"ReactStartCodegenJobData":{
"type":"structure",
"members":{
Expand All @@ -1987,7 +2006,8 @@
"script":{"shape":"JSScript"},
"renderTypeDeclarations":{"shape":"Boolean"},
"inlineSourceMap":{"shape":"Boolean"},
"apiConfiguration":{"shape":"ApiConfiguration"}
"apiConfiguration":{"shape":"ApiConfiguration"},
"dependencies":{"shape":"ReactCodegenDependencies"}
}
},
"RefreshTokenRequest":{
Expand Down
28 changes: 26 additions & 2 deletions models/apis/amplifyuibuilder/2021-08-11/docs-2.json
Expand Up @@ -8,7 +8,7 @@
"DeleteComponent": "<p>Deletes a component from an Amplify app.</p>",
"DeleteForm": "<p>Deletes a form from an Amplify app.</p>",
"DeleteTheme": "<p>Deletes a theme from an Amplify app.</p>",
"ExchangeCodeForToken": "<p>Exchanges an access code for a token.</p>",
"ExchangeCodeForToken": "<note> <p>This is for internal use.</p> </note> <p>Amplify uses this action to exchange an access code for a token.</p>",
"ExportComponents": "<p>Exports component configurations to code that is ready to integrate into an Amplify app.</p>",
"ExportForms": "<p>Exports form configurations to code that is ready to integrate into an Amplify app.</p>",
"ExportThemes": "<p>Exports theme configurations to code that is ready to integrate into an Amplify app.</p>",
Expand All @@ -22,7 +22,7 @@
"ListForms": "<p>Retrieves a list of forms for a specified Amplify app and backend environment.</p>",
"ListThemes": "<p>Retrieves a list of themes for a specified Amplify app and backend environment.</p>",
"PutMetadataFlag": "<p>Stores the metadata information about a feature on a form.</p>",
"RefreshToken": "<p>Refreshes a previously issued access token that might have expired.</p>",
"RefreshToken": "<note> <p>This is for internal use.</p> </note> <p>Amplify uses this action to refresh a previously issued access token that might have expired.</p>",
"StartCodegenJob": "<p>Starts a code generation job for a specified Amplify app and backend environment.</p>",
"UpdateComponent": "<p>Updates an existing component.</p>",
"UpdateForm": "<p>Updates an existing form.</p>",
Expand Down Expand Up @@ -60,6 +60,7 @@
"Boolean": {
"base": null,
"refs": {
"CodegenDependency$isSemVer": "<p>Determines if the dependency package is using Semantic versioning. If set to true, it indicates that the dependency package uses Semantic versioning.</p>",
"CodegenFeatureFlags$isRelationshipSupported": "<p>Specifes whether a code generation job supports data relationships.</p>",
"CodegenFeatureFlags$isNonModelSupported": "<p>Specifies whether a code generation job supports non models.</p>",
"CodegenGenericDataField$required": "<p>Specifies whether the generic data field is required.</p>",
Expand All @@ -84,6 +85,18 @@
"StartCodegenJobData$autoGenerateForms": "<p>Specifies whether to autogenerate forms in the code generation job.</p>"
}
},
"CodegenDependencies": {
"base": null,
"refs": {
"CodegenJob$dependencies": "<p>Lists the dependency packages that may be required for the project code to run.</p>"
}
},
"CodegenDependency": {
"base": "<p>Dependency package that may be required for the project code to run.</p>",
"refs": {
"CodegenDependencies$member": null
}
},
"CodegenFeatureFlags": {
"base": "<p>Describes the feature flags that you can specify for a code generation job.</p>",
"refs": {
Expand Down Expand Up @@ -962,6 +975,12 @@
"refs": {
}
},
"ReactCodegenDependencies": {
"base": "<p>Indicates the dependency version of the project code to be generated by Amazon Web Services Amplify. The version of the generated code output is determined by the version number contained in <code>aws-amplify</code>.</p>",
"refs": {
"ReactStartCodegenJobData$dependencies": "<p>Lists the dependency packages that may be required for the project code to run.</p>"
}
},
"ReactStartCodegenJobData": {
"base": "<p>Describes the code generation job configuration for a React project.</p>",
"refs": {
Expand Down Expand Up @@ -1083,6 +1102,9 @@
"refs": {
"ActionParameters$model": "<p>The name of the data model. Use when the action performs an operation on an Amplify DataStore model.</p>",
"AssociatedFieldsList$member": null,
"CodegenDependency$name": "<p>Name of the dependency package.</p>",
"CodegenDependency$supportedVersion": "<p>Indicates the version of the supported dependency package.</p>",
"CodegenDependency$reason": "<p>Indicates the reason to include the dependency package in your project code.</p>",
"CodegenGenericDataEnumValuesList$member": null,
"CodegenGenericDataEnums$key": null,
"CodegenGenericDataField$dataTypeValue": "<p>The value of the data type for the generic data field.</p>",
Expand Down Expand Up @@ -1250,6 +1272,8 @@
"PutMetadataFlagRequest$appId": "<p>The unique ID for the Amplify app.</p>",
"PutMetadataFlagRequest$environmentName": "<p>The name of the backend environment that is part of the Amplify app.</p>",
"PutMetadataFlagRequest$featureName": "<p>The name of the feature associated with the metadata.</p>",
"ReactCodegenDependencies$key": null,
"ReactCodegenDependencies$value": null,
"RelatedModelFieldsList$member": null,
"ResourceConflictException$message": null,
"ResourceNotFoundException$message": null,
Expand Down

0 comments on commit b011fcd

Please sign in to comment.