Skip to content

Commit

Permalink
Release v1.44.308 (2023-07-25) (#4927)
Browse files Browse the repository at this point in the history
Release v1.44.308 (2023-07-25)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/customer-profiles`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
  * Documentation updates for DynamoDB
* `service/ec2`: Updates service API and documentation
  * This release adds an instance's peak and baseline network bandwidth as well as the memory sizes of an instance's inference accelerators to DescribeInstanceTypes.
* `service/emr-serverless`: Updates service API and documentation
* `service/lambda`: Updates service API
  * Add Python 3.11 (python3.11) support to AWS Lambda
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.
* `service/sagemaker`: Updates service API and documentation
  * Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API
* `service/securityhub`: Updates service API and documentation
* `service/sts`: Updates service API and documentation
  * API updates for the AWS Security Token Service
* `service/transfer`: Updates service API and documentation
  * This release adds support for SFTP Connectors.
* `service/wisdom`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jul 25, 2023
1 parent 0b6a21f commit 756289a
Show file tree
Hide file tree
Showing 47 changed files with 4,945 additions and 831 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
Release v1.44.308 (2023-07-25)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/customer-profiles`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
* Documentation updates for DynamoDB
* `service/ec2`: Updates service API and documentation
* This release adds an instance's peak and baseline network bandwidth as well as the memory sizes of an instance's inference accelerators to DescribeInstanceTypes.
* `service/emr-serverless`: Updates service API and documentation
* `service/lambda`: Updates service API
* Add Python 3.11 (python3.11) support to AWS Lambda
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.
* `service/sagemaker`: Updates service API and documentation
* Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API
* `service/securityhub`: Updates service API and documentation
* `service/sts`: Updates service API and documentation
* API updates for the AWS Security Token Service
* `service/transfer`: Updates service API and documentation
* This release adds support for SFTP Connectors.
* `service/wisdom`: Updates service API and documentation

Release v1.44.307 (2023-07-24)
===

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.307"
const SDKVersion = "1.44.308"
35 changes: 29 additions & 6 deletions models/apis/billingconductor/2021-07-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,8 @@
"type":"structure",
"required":["LinkedAccountIds"],
"members":{
"LinkedAccountIds":{"shape":"AccountIdList"}
"LinkedAccountIds":{"shape":"AccountIdList"},
"AutoAssociate":{"shape":"Boolean"}
}
},
"AccountId":{
Expand Down Expand Up @@ -793,7 +794,8 @@
"CreationTime":{"shape":"Instant"},
"LastModifiedTime":{"shape":"Instant"},
"Status":{"shape":"BillingGroupStatus"},
"StatusReason":{"shape":"BillingGroupStatusReason"}
"StatusReason":{"shape":"BillingGroupStatusReason"},
"AccountGrouping":{"shape":"ListBillingGroupAccountGrouping"}
}
},
"BillingGroupName":{
Expand Down Expand Up @@ -821,6 +823,10 @@
"type":"string",
"pattern":"\\d{4}-(0?[1-9]|1[012])"
},
"Boolean":{
"type":"boolean",
"box":true
},
"ClientToken":{
"type":"string",
"max":64,
Expand Down Expand Up @@ -1296,6 +1302,12 @@
"NextToken":{"shape":"Token"}
}
},
"ListBillingGroupAccountGrouping":{
"type":"structure",
"members":{
"AutoAssociate":{"shape":"Boolean"}
}
},
"ListBillingGroupCostReportsFilter":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1323,7 +1335,8 @@
"members":{
"Arns":{"shape":"BillingGroupArnList"},
"PricingPlan":{"shape":"PricingPlanFullArn"},
"Statuses":{"shape":"BillingGroupStatusList"}
"Statuses":{"shape":"BillingGroupStatusList"},
"AutoAssociate":{"shape":"Boolean"}
}
},
"ListBillingGroupsInput":{
Expand Down Expand Up @@ -1870,6 +1883,12 @@
"members":{
}
},
"UpdateBillingGroupAccountGrouping":{
"type":"structure",
"members":{
"AutoAssociate":{"shape":"Boolean"}
}
},
"UpdateBillingGroupInput":{
"type":"structure",
"required":["Arn"],
Expand All @@ -1878,7 +1897,8 @@
"Name":{"shape":"BillingGroupName"},
"Status":{"shape":"BillingGroupStatus"},
"ComputationPreference":{"shape":"ComputationPreference"},
"Description":{"shape":"BillingGroupDescription"}
"Description":{"shape":"BillingGroupDescription"},
"AccountGrouping":{"shape":"UpdateBillingGroupAccountGrouping"}
}
},
"UpdateBillingGroupOutput":{
Expand All @@ -1892,7 +1912,8 @@
"Size":{"shape":"NumberOfAccounts"},
"LastModifiedTime":{"shape":"Instant"},
"Status":{"shape":"BillingGroupStatus"},
"StatusReason":{"shape":"BillingGroupStatusReason"}
"StatusReason":{"shape":"BillingGroupStatusReason"},
"AccountGrouping":{"shape":"UpdateBillingGroupAccountGrouping"}
}
},
"UpdateCustomLineItemChargeDetails":{
Expand Down Expand Up @@ -2096,7 +2117,9 @@
"ILLEGAL_OPERATION",
"ILLEGAL_USAGE_TYPE",
"INVALID_SKU_COMBO",
"INVALID_FILTER"
"INVALID_FILTER",
"TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS",
"CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP"
]
}
}
Expand Down
Loading

0 comments on commit 756289a

Please sign in to comment.