Skip to content

Commit

Permalink
Release v1.45.10 (2023-09-14) (#4988)
Browse files Browse the repository at this point in the history
Release v1.45.10 (2023-09-14)
===

### Service Client Updates
* `service/appstream`: Updates service API, documentation, and waiters
  * This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
* `service/cloudformation`: Updates service documentation
  * Documentation updates for AWS CloudFormation
* `service/entityresolution`: Updates service API and documentation
* `service/lookoutequipment`: Updates service API, documentation, paginators, and examples
  • Loading branch information
aws-sdk-go-automation committed Sep 14, 2023
1 parent 873f227 commit f0c05a2
Show file tree
Hide file tree
Showing 23 changed files with 4,310 additions and 837 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.45.10 (2023-09-14)
===

### Service Client Updates
* `service/appstream`: Updates service API, documentation, and waiters
* This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
* `service/cloudformation`: Updates service documentation
* Documentation updates for AWS CloudFormation
* `service/entityresolution`: Updates service API and documentation
* `service/lookoutequipment`: Updates service API, documentation, paginators, and examples

Release v1.45.9 (2023-09-13)
===

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.45.9"
const SDKVersion = "1.45.10"
34 changes: 22 additions & 12 deletions models/apis/appstream/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1487,9 +1487,9 @@
},
"ComputeCapacity":{
"type":"structure",
"required":["DesiredInstances"],
"members":{
"DesiredInstances":{"shape":"Integer"}
"DesiredInstances":{"shape":"Integer"},
"DesiredSessions":{"shape":"Integer"}
}
},
"ComputeCapacityStatus":{
Expand All @@ -1499,7 +1499,11 @@
"Desired":{"shape":"Integer"},
"Running":{"shape":"Integer"},
"InUse":{"shape":"Integer"},
"Available":{"shape":"Integer"}
"Available":{"shape":"Integer"},
"DesiredUserSessions":{"shape":"Integer"},
"AvailableUserSessions":{"shape":"Integer"},
"ActiveUserSessions":{"shape":"Integer"},
"ActualUserSessions":{"shape":"Integer"}
}
},
"ConcurrentModificationException":{
Expand Down Expand Up @@ -1692,7 +1696,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"CreateFleetResult":{
Expand Down Expand Up @@ -2186,12 +2191,13 @@
"FleetName"
],
"members":{
"StackName":{"shape":"String"},
"FleetName":{"shape":"String"},
"StackName":{"shape":"Name"},
"FleetName":{"shape":"Name"},
"UserId":{"shape":"UserId"},
"NextToken":{"shape":"String"},
"Limit":{"shape":"Integer"},
"AuthenticationType":{"shape":"AuthenticationType"}
"AuthenticationType":{"shape":"AuthenticationType"},
"InstanceId":{"shape":"String"}
}
},
"DescribeSessionsResult":{
Expand Down Expand Up @@ -2540,7 +2546,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"FleetAttribute":{
Expand All @@ -2551,7 +2558,8 @@
"DOMAIN_JOIN_INFO",
"IAM_ROLE_ARN",
"USB_DEVICE_FILTER_STRINGS",
"SESSION_SCRIPT_S3_LOCATION"
"SESSION_SCRIPT_S3_LOCATION",
"MAX_SESSIONS_PER_INSTANCE"
]
},
"FleetAttributes":{
Expand Down Expand Up @@ -3063,7 +3071,8 @@
"StartTime":{"shape":"Timestamp"},
"MaxExpirationTime":{"shape":"Timestamp"},
"AuthenticationType":{"shape":"AuthenticationType"},
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"}
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"},
"InstanceId":{"shape":"String"}
}
},
"SessionConnectionState":{
Expand Down Expand Up @@ -3438,7 +3447,7 @@
"members":{
"ImageName":{"shape":"String"},
"ImageArn":{"shape":"Arn"},
"Name":{"shape":"String"},
"Name":{"shape":"Name"},
"InstanceType":{"shape":"String"},
"ComputeCapacity":{"shape":"ComputeCapacity"},
"VpcConfig":{"shape":"VpcConfig"},
Expand All @@ -3459,7 +3468,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"UpdateFleetResult":{
Expand Down
20 changes: 15 additions & 5 deletions models/apis/appstream/2016-12-01/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit f0c05a2

Please sign in to comment.