Skip to content

Commit

Permalink
Release v1.44.300 (2023-07-13) (#4909)
Browse files Browse the repository at this point in the history
Release v1.44.300 (2023-07-13)
===

### Service Client Updates
* `service/cognito-idp`: Updates service API
* `service/connect`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/dms`: Updates service API and documentation
  * Enhanced PostgreSQL target endpoint settings for providing Babelfish support.
* `service/ec2`: Updates service API
  * This release adds support for the C7gn and Hpc7g instances. C7gn instances are powered by AWS Graviton3 processors and the fifth-generation AWS Nitro Cards. Hpc7g instances are powered by AWS Graviton 3E processors and provide up to 200 Gbps network bandwidth.
* `service/fsx`: Updates service API and documentation
* `service/iam`: Updates service documentation
  * Documentation updates for AWS Identity and Access Management (IAM).
* `service/mediatailor`: Updates service API and documentation
* `service/personalize`: Updates service API and documentation
* `service/proton`: Updates service API, documentation, and paginators
* `service/s3`: Updates service API, documentation, and examples
  * S3 Inventory now supports Object Access Control List and Object Owner as available object metadata fields in inventory reports.
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker Canvas adds WorkspeceSettings support for CanvasAppSettings
* `service/secretsmanager`: Updates service documentation and examples
  * Documentation updates for Secrets Manager
  • Loading branch information
aws-sdk-go-automation authored Jul 13, 2023
1 parent 633dbc1 commit f219aeb
Show file tree
Hide file tree
Showing 48 changed files with 5,012 additions and 591 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
Release v1.44.300 (2023-07-13)
===

### Service Client Updates
* `service/cognito-idp`: Updates service API
* `service/connect`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/dms`: Updates service API and documentation
* Enhanced PostgreSQL target endpoint settings for providing Babelfish support.
* `service/ec2`: Updates service API
* This release adds support for the C7gn and Hpc7g instances. C7gn instances are powered by AWS Graviton3 processors and the fifth-generation AWS Nitro Cards. Hpc7g instances are powered by AWS Graviton 3E processors and provide up to 200 Gbps network bandwidth.
* `service/fsx`: Updates service API and documentation
* `service/iam`: Updates service documentation
* Documentation updates for AWS Identity and Access Management (IAM).
* `service/mediatailor`: Updates service API and documentation
* `service/personalize`: Updates service API and documentation
* `service/proton`: Updates service API, documentation, and paginators
* `service/s3`: Updates service API, documentation, and examples
* S3 Inventory now supports Object Access Control List and Object Owner as available object metadata fields in inventory reports.
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Canvas adds WorkspeceSettings support for CanvasAppSettings
* `service/secretsmanager`: Updates service documentation and examples
* Documentation updates for Secrets Manager

Release v1.44.299 (2023-07-11)
===

Expand Down
144 changes: 144 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.299"
const SDKVersion = "1.44.300"
6 changes: 4 additions & 2 deletions models/apis/cognito-idp/2016-04-18/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4863,7 +4863,8 @@
"type":"string",
"max":6,
"min":6,
"pattern":"[0-9]+"
"pattern":"[0-9]+",
"sensitive":true
},
"SoftwareTokenMfaConfigType":{
"type":"structure",
Expand Down Expand Up @@ -5284,7 +5285,8 @@
"members":{
"IpAddress":{"shape":"StringType"},
"EncodedData":{"shape":"StringType"}
}
},
"sensitive":true
},
"UserFilterType":{
"type":"string",
Expand Down
70 changes: 70 additions & 0 deletions models/apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,22 @@
{"shape":"InternalServiceException"}
]
},
"DeleteQueue":{
"name":"DeleteQueue",
"http":{
"method":"DELETE",
"requestUri":"/queues/{InstanceId}/{QueueId}"
},
"input":{"shape":"DeleteQueueRequest"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceInUseException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"DeleteQuickConnect":{
"name":"DeleteQuickConnect",
"http":{
Expand All @@ -720,6 +736,22 @@
{"shape":"InternalServiceException"}
]
},
"DeleteRoutingProfile":{
"name":"DeleteRoutingProfile",
"http":{
"method":"DELETE",
"requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}"
},
"input":{"shape":"DeleteRoutingProfileRequest"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceInUseException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"DeleteRule":{
"name":"DeleteRule",
"http":{
Expand Down Expand Up @@ -4859,6 +4891,25 @@
}
}
},
"DeleteQueueRequest":{
"type":"structure",
"required":[
"InstanceId",
"QueueId"
],
"members":{
"InstanceId":{
"shape":"InstanceId",
"location":"uri",
"locationName":"InstanceId"
},
"QueueId":{
"shape":"QueueId",
"location":"uri",
"locationName":"QueueId"
}
}
},
"DeleteQuickConnectRequest":{
"type":"structure",
"required":[
Expand All @@ -4878,6 +4929,25 @@
}
}
},
"DeleteRoutingProfileRequest":{
"type":"structure",
"required":[
"InstanceId",
"RoutingProfileId"
],
"members":{
"InstanceId":{
"shape":"InstanceId",
"location":"uri",
"locationName":"InstanceId"
},
"RoutingProfileId":{
"shape":"RoutingProfileId",
"location":"uri",
"locationName":"RoutingProfileId"
}
}
},
"DeleteRuleRequest":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit f219aeb

Please sign in to comment.