@aws-sdk/client-appstream 3.436.0 → 3.437.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +8 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeSessionsCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +9 -2
- package/dist-types/models/models_0.d.ts +60 -2
- package/dist-types/ts3.4/models/models_0.d.ts +12 -1
- package/package.json +4 -4
|
@@ -392,6 +392,7 @@ exports.UsageReportExecutionErrorCode = {
|
|
|
392
392
|
exports.FleetAttribute = {
|
|
393
393
|
DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO",
|
|
394
394
|
IAM_ROLE_ARN: "IAM_ROLE_ARN",
|
|
395
|
+
MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE",
|
|
395
396
|
SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION",
|
|
396
397
|
USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS",
|
|
397
398
|
VPC_CONFIGURATION: "VPC_CONFIGURATION",
|
|
@@ -3994,6 +3994,7 @@ const de_Fleet = (output, context) => {
|
|
|
3994
3994
|
ImageName: smithy_client_1.expectString,
|
|
3995
3995
|
InstanceType: smithy_client_1.expectString,
|
|
3996
3996
|
MaxConcurrentSessions: smithy_client_1.expectInt32,
|
|
3997
|
+
MaxSessionsPerInstance: smithy_client_1.expectInt32,
|
|
3997
3998
|
MaxUserDurationInSeconds: smithy_client_1.expectInt32,
|
|
3998
3999
|
Name: smithy_client_1.expectString,
|
|
3999
4000
|
Platform: smithy_client_1.expectString,
|
|
@@ -4092,6 +4093,7 @@ const de_Session = (output, context) => {
|
|
|
4092
4093
|
ConnectionState: smithy_client_1.expectString,
|
|
4093
4094
|
FleetName: smithy_client_1.expectString,
|
|
4094
4095
|
Id: smithy_client_1.expectString,
|
|
4096
|
+
InstanceId: smithy_client_1.expectString,
|
|
4095
4097
|
MaxExpirationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
4096
4098
|
NetworkAccessConfiguration: smithy_client_1._json,
|
|
4097
4099
|
StackName: smithy_client_1.expectString,
|
|
@@ -374,6 +374,7 @@ export const UsageReportExecutionErrorCode = {
|
|
|
374
374
|
export const FleetAttribute = {
|
|
375
375
|
DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO",
|
|
376
376
|
IAM_ROLE_ARN: "IAM_ROLE_ARN",
|
|
377
|
+
MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE",
|
|
377
378
|
SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION",
|
|
378
379
|
USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS",
|
|
379
380
|
VPC_CONFIGURATION: "VPC_CONFIGURATION",
|
|
@@ -3839,6 +3839,7 @@ const de_Fleet = (output, context) => {
|
|
|
3839
3839
|
ImageName: __expectString,
|
|
3840
3840
|
InstanceType: __expectString,
|
|
3841
3841
|
MaxConcurrentSessions: __expectInt32,
|
|
3842
|
+
MaxSessionsPerInstance: __expectInt32,
|
|
3842
3843
|
MaxUserDurationInSeconds: __expectInt32,
|
|
3843
3844
|
Name: __expectString,
|
|
3844
3845
|
Platform: __expectString,
|
|
@@ -3937,6 +3938,7 @@ const de_Session = (output, context) => {
|
|
|
3937
3938
|
ConnectionState: __expectString,
|
|
3938
3939
|
FleetName: __expectString,
|
|
3939
3940
|
Id: __expectString,
|
|
3941
|
+
InstanceId: __expectString,
|
|
3940
3942
|
MaxExpirationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3941
3943
|
NetworkAccessConfiguration: _json,
|
|
3942
3944
|
StackName: __expectString,
|
|
@@ -37,7 +37,8 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
37
37
|
* InstanceType: "STRING_VALUE", // required
|
|
38
38
|
* FleetType: "ALWAYS_ON" || "ON_DEMAND" || "ELASTIC",
|
|
39
39
|
* ComputeCapacity: { // ComputeCapacity
|
|
40
|
-
* DesiredInstances: Number("int"),
|
|
40
|
+
* DesiredInstances: Number("int"),
|
|
41
|
+
* DesiredSessions: Number("int"),
|
|
41
42
|
* },
|
|
42
43
|
* VpcConfig: { // VpcConfig
|
|
43
44
|
* SubnetIds: [ // SubnetIdList
|
|
@@ -71,6 +72,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
71
72
|
* S3Bucket: "STRING_VALUE", // required
|
|
72
73
|
* S3Key: "STRING_VALUE",
|
|
73
74
|
* },
|
|
75
|
+
* MaxSessionsPerInstance: Number("int"),
|
|
74
76
|
* };
|
|
75
77
|
* const command = new CreateFleetCommand(input);
|
|
76
78
|
* const response = await client.send(command);
|
|
@@ -89,6 +91,10 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
89
91
|
* // Running: Number("int"),
|
|
90
92
|
* // InUse: Number("int"),
|
|
91
93
|
* // Available: Number("int"),
|
|
94
|
+
* // DesiredUserSessions: Number("int"),
|
|
95
|
+
* // AvailableUserSessions: Number("int"),
|
|
96
|
+
* // ActiveUserSessions: Number("int"),
|
|
97
|
+
* // ActualUserSessions: Number("int"),
|
|
92
98
|
* // },
|
|
93
99
|
* // MaxUserDurationInSeconds: Number("int"),
|
|
94
100
|
* // DisconnectTimeoutInSeconds: Number("int"),
|
|
@@ -125,6 +131,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
125
131
|
* // S3Bucket: "STRING_VALUE", // required
|
|
126
132
|
* // S3Key: "STRING_VALUE",
|
|
127
133
|
* // },
|
|
134
|
+
* // MaxSessionsPerInstance: Number("int"),
|
|
128
135
|
* // },
|
|
129
136
|
* // };
|
|
130
137
|
*
|
|
@@ -54,6 +54,10 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
|
|
|
54
54
|
* // Running: Number("int"),
|
|
55
55
|
* // InUse: Number("int"),
|
|
56
56
|
* // Available: Number("int"),
|
|
57
|
+
* // DesiredUserSessions: Number("int"),
|
|
58
|
+
* // AvailableUserSessions: Number("int"),
|
|
59
|
+
* // ActiveUserSessions: Number("int"),
|
|
60
|
+
* // ActualUserSessions: Number("int"),
|
|
57
61
|
* // },
|
|
58
62
|
* // MaxUserDurationInSeconds: Number("int"),
|
|
59
63
|
* // DisconnectTimeoutInSeconds: Number("int"),
|
|
@@ -90,6 +94,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
|
|
|
90
94
|
* // S3Bucket: "STRING_VALUE", // required
|
|
91
95
|
* // S3Key: "STRING_VALUE",
|
|
92
96
|
* // },
|
|
97
|
+
* // MaxSessionsPerInstance: Number("int"),
|
|
93
98
|
* // },
|
|
94
99
|
* // ],
|
|
95
100
|
* // NextToken: "STRING_VALUE",
|
|
@@ -39,6 +39,7 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
|
|
|
39
39
|
* NextToken: "STRING_VALUE",
|
|
40
40
|
* Limit: Number("int"),
|
|
41
41
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
|
|
42
|
+
* InstanceId: "STRING_VALUE",
|
|
42
43
|
* };
|
|
43
44
|
* const command = new DescribeSessionsCommand(input);
|
|
44
45
|
* const response = await client.send(command);
|
|
@@ -58,6 +59,7 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
|
|
|
58
59
|
* // EniPrivateIpAddress: "STRING_VALUE",
|
|
59
60
|
* // EniId: "STRING_VALUE",
|
|
60
61
|
* // },
|
|
62
|
+
* // InstanceId: "STRING_VALUE",
|
|
61
63
|
* // },
|
|
62
64
|
* // ],
|
|
63
65
|
* // NextToken: "STRING_VALUE",
|
|
@@ -57,7 +57,8 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
57
57
|
* Name: "STRING_VALUE",
|
|
58
58
|
* InstanceType: "STRING_VALUE",
|
|
59
59
|
* ComputeCapacity: { // ComputeCapacity
|
|
60
|
-
* DesiredInstances: Number("int"),
|
|
60
|
+
* DesiredInstances: Number("int"),
|
|
61
|
+
* DesiredSessions: Number("int"),
|
|
61
62
|
* },
|
|
62
63
|
* VpcConfig: { // VpcConfig
|
|
63
64
|
* SubnetIds: [ // SubnetIdList
|
|
@@ -79,7 +80,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
79
80
|
* },
|
|
80
81
|
* IdleDisconnectTimeoutInSeconds: Number("int"),
|
|
81
82
|
* AttributesToDelete: [ // FleetAttributes
|
|
82
|
-
* "VPC_CONFIGURATION" || "VPC_CONFIGURATION_SECURITY_GROUP_IDS" || "DOMAIN_JOIN_INFO" || "IAM_ROLE_ARN" || "USB_DEVICE_FILTER_STRINGS" || "SESSION_SCRIPT_S3_LOCATION",
|
|
83
|
+
* "VPC_CONFIGURATION" || "VPC_CONFIGURATION_SECURITY_GROUP_IDS" || "DOMAIN_JOIN_INFO" || "IAM_ROLE_ARN" || "USB_DEVICE_FILTER_STRINGS" || "SESSION_SCRIPT_S3_LOCATION" || "MAX_SESSIONS_PER_INSTANCE",
|
|
83
84
|
* ],
|
|
84
85
|
* IamRoleArn: "STRING_VALUE",
|
|
85
86
|
* StreamView: "APP" || "DESKTOP",
|
|
@@ -92,6 +93,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
92
93
|
* S3Bucket: "STRING_VALUE", // required
|
|
93
94
|
* S3Key: "STRING_VALUE",
|
|
94
95
|
* },
|
|
96
|
+
* MaxSessionsPerInstance: Number("int"),
|
|
95
97
|
* };
|
|
96
98
|
* const command = new UpdateFleetCommand(input);
|
|
97
99
|
* const response = await client.send(command);
|
|
@@ -110,6 +112,10 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
110
112
|
* // Running: Number("int"),
|
|
111
113
|
* // InUse: Number("int"),
|
|
112
114
|
* // Available: Number("int"),
|
|
115
|
+
* // DesiredUserSessions: Number("int"),
|
|
116
|
+
* // AvailableUserSessions: Number("int"),
|
|
117
|
+
* // ActiveUserSessions: Number("int"),
|
|
118
|
+
* // ActualUserSessions: Number("int"),
|
|
113
119
|
* // },
|
|
114
120
|
* // MaxUserDurationInSeconds: Number("int"),
|
|
115
121
|
* // DisconnectTimeoutInSeconds: Number("int"),
|
|
@@ -146,6 +152,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
146
152
|
* // S3Bucket: "STRING_VALUE", // required
|
|
147
153
|
* // S3Key: "STRING_VALUE",
|
|
148
154
|
* // },
|
|
155
|
+
* // MaxSessionsPerInstance: Number("int"),
|
|
149
156
|
* // },
|
|
150
157
|
* // };
|
|
151
158
|
*
|
|
@@ -1026,7 +1026,13 @@ export interface ComputeCapacity {
|
|
|
1026
1026
|
* @public
|
|
1027
1027
|
* <p>The desired number of streaming instances.</p>
|
|
1028
1028
|
*/
|
|
1029
|
-
DesiredInstances
|
|
1029
|
+
DesiredInstances?: number;
|
|
1030
|
+
/**
|
|
1031
|
+
* @public
|
|
1032
|
+
* <p>The desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets.</p>
|
|
1033
|
+
* <p>When you create a fleet, you must set either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.</p>
|
|
1034
|
+
*/
|
|
1035
|
+
DesiredSessions?: number;
|
|
1030
1036
|
}
|
|
1031
1037
|
/**
|
|
1032
1038
|
* @public
|
|
@@ -1054,6 +1060,32 @@ export interface ComputeCapacityStatus {
|
|
|
1054
1060
|
* sessions.</p>
|
|
1055
1061
|
*/
|
|
1056
1062
|
Available?: number;
|
|
1063
|
+
/**
|
|
1064
|
+
* @public
|
|
1065
|
+
* <p>The total number of sessions slots that are either running or pending. This represents the total number of concurrent streaming sessions your fleet can support in a steady state.</p>
|
|
1066
|
+
* <p>DesiredUserSessionCapacity = ActualUserSessionCapacity + PendingUserSessionCapacity</p>
|
|
1067
|
+
* <p>This only applies to multi-session fleets.</p>
|
|
1068
|
+
*/
|
|
1069
|
+
DesiredUserSessions?: number;
|
|
1070
|
+
/**
|
|
1071
|
+
* @public
|
|
1072
|
+
* <p>The number of idle session slots currently available for user sessions.</p>
|
|
1073
|
+
* <p>AvailableUserSessionCapacity = ActualUserSessionCapacity - ActiveUserSessions</p>
|
|
1074
|
+
* <p>This only applies to multi-session fleets.</p>
|
|
1075
|
+
*/
|
|
1076
|
+
AvailableUserSessions?: number;
|
|
1077
|
+
/**
|
|
1078
|
+
* @public
|
|
1079
|
+
* <p>The number of user sessions currently being used for streaming sessions. This only applies to multi-session fleets.</p>
|
|
1080
|
+
*/
|
|
1081
|
+
ActiveUserSessions?: number;
|
|
1082
|
+
/**
|
|
1083
|
+
* @public
|
|
1084
|
+
* <p>The total number of session slots that are available for streaming or are currently streaming.</p>
|
|
1085
|
+
* <p>ActualUserSessionCapacity = AvailableUserSessionCapacity + ActiveUserSessions</p>
|
|
1086
|
+
* <p>This only applies to multi-session fleets.</p>
|
|
1087
|
+
*/
|
|
1088
|
+
ActualUserSessions?: number;
|
|
1057
1089
|
}
|
|
1058
1090
|
/**
|
|
1059
1091
|
* @public
|
|
@@ -1880,7 +1912,7 @@ export interface CreateFleetRequest {
|
|
|
1880
1912
|
/**
|
|
1881
1913
|
* @public
|
|
1882
1914
|
* <p>The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.</p>
|
|
1883
|
-
* <p>Specify a value between 600 and
|
|
1915
|
+
* <p>Specify a value between 600 and 432000.</p>
|
|
1884
1916
|
*/
|
|
1885
1917
|
MaxUserDurationInSeconds?: number;
|
|
1886
1918
|
/**
|
|
@@ -1970,6 +2002,11 @@ export interface CreateFleetRequest {
|
|
|
1970
2002
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.</p>
|
|
1971
2003
|
*/
|
|
1972
2004
|
SessionScriptS3Location?: S3Location;
|
|
2005
|
+
/**
|
|
2006
|
+
* @public
|
|
2007
|
+
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
2008
|
+
*/
|
|
2009
|
+
MaxSessionsPerInstance?: number;
|
|
1973
2010
|
}
|
|
1974
2011
|
/**
|
|
1975
2012
|
* @public
|
|
@@ -2257,6 +2294,11 @@ export interface Fleet {
|
|
|
2257
2294
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.</p>
|
|
2258
2295
|
*/
|
|
2259
2296
|
SessionScriptS3Location?: S3Location;
|
|
2297
|
+
/**
|
|
2298
|
+
* @public
|
|
2299
|
+
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
2300
|
+
*/
|
|
2301
|
+
MaxSessionsPerInstance?: number;
|
|
2260
2302
|
}
|
|
2261
2303
|
/**
|
|
2262
2304
|
* @public
|
|
@@ -4077,6 +4119,11 @@ export interface DescribeSessionsRequest {
|
|
|
4077
4119
|
* The default is to authenticate users using a streaming URL.</p>
|
|
4078
4120
|
*/
|
|
4079
4121
|
AuthenticationType?: AuthenticationType;
|
|
4122
|
+
/**
|
|
4123
|
+
* @public
|
|
4124
|
+
* <p>The identifier for the instance hosting the session.</p>
|
|
4125
|
+
*/
|
|
4126
|
+
InstanceId?: string;
|
|
4080
4127
|
}
|
|
4081
4128
|
/**
|
|
4082
4129
|
* @public
|
|
@@ -4159,6 +4206,11 @@ export interface Session {
|
|
|
4159
4206
|
* <p>The network details for the streaming session.</p>
|
|
4160
4207
|
*/
|
|
4161
4208
|
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
4209
|
+
/**
|
|
4210
|
+
* @public
|
|
4211
|
+
* <p>The identifier for the instance hosting the session.</p>
|
|
4212
|
+
*/
|
|
4213
|
+
InstanceId?: string;
|
|
4162
4214
|
}
|
|
4163
4215
|
/**
|
|
4164
4216
|
* @public
|
|
@@ -4608,6 +4660,7 @@ export interface ExpireSessionResult {
|
|
|
4608
4660
|
export declare const FleetAttribute: {
|
|
4609
4661
|
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
4610
4662
|
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
4663
|
+
readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
|
|
4611
4664
|
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
4612
4665
|
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
4613
4666
|
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
@@ -5381,6 +5434,11 @@ export interface UpdateFleetRequest {
|
|
|
5381
5434
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets. </p>
|
|
5382
5435
|
*/
|
|
5383
5436
|
SessionScriptS3Location?: S3Location;
|
|
5437
|
+
/**
|
|
5438
|
+
* @public
|
|
5439
|
+
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
5440
|
+
*/
|
|
5441
|
+
MaxSessionsPerInstance?: number;
|
|
5384
5442
|
}
|
|
5385
5443
|
/**
|
|
5386
5444
|
* @public
|
|
@@ -342,13 +342,18 @@ export interface CertificateBasedAuthProperties {
|
|
|
342
342
|
CertificateAuthorityArn?: string;
|
|
343
343
|
}
|
|
344
344
|
export interface ComputeCapacity {
|
|
345
|
-
DesiredInstances
|
|
345
|
+
DesiredInstances?: number;
|
|
346
|
+
DesiredSessions?: number;
|
|
346
347
|
}
|
|
347
348
|
export interface ComputeCapacityStatus {
|
|
348
349
|
Desired: number | undefined;
|
|
349
350
|
Running?: number;
|
|
350
351
|
InUse?: number;
|
|
351
352
|
Available?: number;
|
|
353
|
+
DesiredUserSessions?: number;
|
|
354
|
+
AvailableUserSessions?: number;
|
|
355
|
+
ActiveUserSessions?: number;
|
|
356
|
+
ActualUserSessions?: number;
|
|
352
357
|
}
|
|
353
358
|
export interface CopyImageRequest {
|
|
354
359
|
SourceImageName: string | undefined;
|
|
@@ -534,6 +539,7 @@ export interface CreateFleetRequest {
|
|
|
534
539
|
MaxConcurrentSessions?: number;
|
|
535
540
|
UsbDeviceFilterStrings?: string[];
|
|
536
541
|
SessionScriptS3Location?: S3Location;
|
|
542
|
+
MaxSessionsPerInstance?: number;
|
|
537
543
|
}
|
|
538
544
|
export interface FleetError {
|
|
539
545
|
ErrorCode?: FleetErrorCode;
|
|
@@ -571,6 +577,7 @@ export interface Fleet {
|
|
|
571
577
|
MaxConcurrentSessions?: number;
|
|
572
578
|
UsbDeviceFilterStrings?: string[];
|
|
573
579
|
SessionScriptS3Location?: S3Location;
|
|
580
|
+
MaxSessionsPerInstance?: number;
|
|
574
581
|
}
|
|
575
582
|
export interface CreateFleetResult {
|
|
576
583
|
Fleet?: Fleet;
|
|
@@ -998,6 +1005,7 @@ export interface DescribeSessionsRequest {
|
|
|
998
1005
|
NextToken?: string;
|
|
999
1006
|
Limit?: number;
|
|
1000
1007
|
AuthenticationType?: AuthenticationType;
|
|
1008
|
+
InstanceId?: string;
|
|
1001
1009
|
}
|
|
1002
1010
|
export declare const SessionConnectionState: {
|
|
1003
1011
|
readonly CONNECTED: "CONNECTED";
|
|
@@ -1022,6 +1030,7 @@ export interface Session {
|
|
|
1022
1030
|
MaxExpirationTime?: Date;
|
|
1023
1031
|
AuthenticationType?: AuthenticationType;
|
|
1024
1032
|
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
1033
|
+
InstanceId?: string;
|
|
1025
1034
|
}
|
|
1026
1035
|
export interface DescribeSessionsResult {
|
|
1027
1036
|
Sessions?: Session[];
|
|
@@ -1131,6 +1140,7 @@ export interface ExpireSessionResult {}
|
|
|
1131
1140
|
export declare const FleetAttribute: {
|
|
1132
1141
|
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
1133
1142
|
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1143
|
+
readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
|
|
1134
1144
|
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
1135
1145
|
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
1136
1146
|
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
@@ -1283,6 +1293,7 @@ export interface UpdateFleetRequest {
|
|
|
1283
1293
|
MaxConcurrentSessions?: number;
|
|
1284
1294
|
UsbDeviceFilterStrings?: string[];
|
|
1285
1295
|
SessionScriptS3Location?: S3Location;
|
|
1296
|
+
MaxSessionsPerInstance?: number;
|
|
1286
1297
|
}
|
|
1287
1298
|
export interface UpdateFleetResult {
|
|
1288
1299
|
Fleet?: Fleet;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.437.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.437.0",
|
|
25
25
|
"@aws-sdk/core": "3.436.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.437.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/types": "3.433.0",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.433.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.437.0",
|
|
37
37
|
"@smithy/config-resolver": "^2.0.16",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.2.4",
|
|
39
39
|
"@smithy/hash-node": "^2.0.12",
|