@aws-sdk/client-gameliftstreams 3.933.0 → 3.935.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.
@@ -0,0 +1,173 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const StreamGroupLocationStatus: {
6
+ readonly ACTIVATING: "ACTIVATING";
7
+ readonly ACTIVE: "ACTIVE";
8
+ readonly ERROR: "ERROR";
9
+ readonly REMOVING: "REMOVING";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type StreamGroupLocationStatus = (typeof StreamGroupLocationStatus)[keyof typeof StreamGroupLocationStatus];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ApplicationStatus: {
20
+ readonly DELETING: "DELETING";
21
+ readonly ERROR: "ERROR";
22
+ readonly INITIALIZED: "INITIALIZED";
23
+ readonly PROCESSING: "PROCESSING";
24
+ readonly READY: "READY";
25
+ };
26
+ /**
27
+ * @public
28
+ */
29
+ export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
30
+ /**
31
+ * @public
32
+ * @enum
33
+ */
34
+ export declare const ApplicationStatusReason: {
35
+ readonly ACCESS_DENIED: "accessDenied";
36
+ readonly INTERNAL_ERROR: "internalError";
37
+ };
38
+ /**
39
+ * @public
40
+ */
41
+ export type ApplicationStatusReason = (typeof ApplicationStatusReason)[keyof typeof ApplicationStatusReason];
42
+ /**
43
+ * @public
44
+ * @enum
45
+ */
46
+ export declare const RuntimeEnvironmentType: {
47
+ readonly PROTON: "PROTON";
48
+ readonly UBUNTU: "UBUNTU";
49
+ readonly WINDOWS: "WINDOWS";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type RuntimeEnvironmentType = (typeof RuntimeEnvironmentType)[keyof typeof RuntimeEnvironmentType];
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const ReplicationStatusType: {
60
+ readonly COMPLETED: "COMPLETED";
61
+ readonly REPLICATING: "REPLICATING";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type ReplicationStatusType = (typeof ReplicationStatusType)[keyof typeof ReplicationStatusType];
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const StreamClass: {
72
+ readonly gen4n_high: "gen4n_high";
73
+ readonly gen4n_ultra: "gen4n_ultra";
74
+ readonly gen4n_win2022: "gen4n_win2022";
75
+ readonly gen5n_high: "gen5n_high";
76
+ readonly gen5n_ultra: "gen5n_ultra";
77
+ readonly gen5n_win2022: "gen5n_win2022";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type StreamClass = (typeof StreamClass)[keyof typeof StreamClass];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const StreamGroupStatus: {
88
+ readonly ACTIVATING: "ACTIVATING";
89
+ readonly ACTIVE: "ACTIVE";
90
+ readonly ACTIVE_WITH_ERRORS: "ACTIVE_WITH_ERRORS";
91
+ readonly DELETING: "DELETING";
92
+ readonly ERROR: "ERROR";
93
+ readonly EXPIRED: "EXPIRED";
94
+ readonly UPDATING_LOCATIONS: "UPDATING_LOCATIONS";
95
+ };
96
+ /**
97
+ * @public
98
+ */
99
+ export type StreamGroupStatus = (typeof StreamGroupStatus)[keyof typeof StreamGroupStatus];
100
+ /**
101
+ * @public
102
+ * @enum
103
+ */
104
+ export declare const StreamGroupStatusReason: {
105
+ readonly INTERNAL_ERROR: "internalError";
106
+ readonly NO_AVAILABLE_INSTANCES: "noAvailableInstances";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type StreamGroupStatusReason = (typeof StreamGroupStatusReason)[keyof typeof StreamGroupStatusReason];
112
+ /**
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const ExportFilesStatus: {
117
+ readonly FAILED: "FAILED";
118
+ readonly PENDING: "PENDING";
119
+ readonly SUCCEEDED: "SUCCEEDED";
120
+ };
121
+ /**
122
+ * @public
123
+ */
124
+ export type ExportFilesStatus = (typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
125
+ /**
126
+ * @public
127
+ * @enum
128
+ */
129
+ export declare const Protocol: {
130
+ readonly WEBRTC: "WebRTC";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const StreamSessionStatus: {
141
+ readonly ACTIVATING: "ACTIVATING";
142
+ readonly ACTIVE: "ACTIVE";
143
+ readonly CONNECTED: "CONNECTED";
144
+ readonly ERROR: "ERROR";
145
+ readonly PENDING_CLIENT_RECONNECTION: "PENDING_CLIENT_RECONNECTION";
146
+ readonly RECONNECTING: "RECONNECTING";
147
+ readonly TERMINATED: "TERMINATED";
148
+ readonly TERMINATING: "TERMINATING";
149
+ };
150
+ /**
151
+ * @public
152
+ */
153
+ export type StreamSessionStatus = (typeof StreamSessionStatus)[keyof typeof StreamSessionStatus];
154
+ /**
155
+ * @public
156
+ * @enum
157
+ */
158
+ export declare const StreamSessionStatusReason: {
159
+ readonly API_TERMINATED: "apiTerminated";
160
+ readonly APPLICATION_EXIT: "applicationExit";
161
+ readonly APP_LOG_S3_DESTINATION_ERROR: "applicationLogS3DestinationError";
162
+ readonly CONNECTION_TIMEOUT: "connectionTimeout";
163
+ readonly IDLE_TIMEOUT: "idleTimeout";
164
+ readonly INTERNAL_ERROR: "internalError";
165
+ readonly INVALID_SIGNAL_REQUEST: "invalidSignalRequest";
166
+ readonly MAX_SESSION_LENGTH_TIMEOUT: "maxSessionLengthTimeout";
167
+ readonly PLACEMENT_TIMEOUT: "placementTimeout";
168
+ readonly RECONNECTION_TIMEOUT: "reconnectionTimeout";
169
+ };
170
+ /**
171
+ * @public
172
+ */
173
+ export type StreamSessionStatusReason = (typeof StreamSessionStatusReason)[keyof typeof StreamSessionStatusReason];
@@ -0,0 +1,125 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { GameLiftStreamsServiceException as __BaseException } from "./GameLiftStreamsServiceException";
3
+ /**
4
+ * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the permissions before you try again.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * <p>Description of the error.</p>
12
+ * @public
13
+ */
14
+ Message: string | undefined;
15
+ /**
16
+ * @internal
17
+ */
18
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
19
+ }
20
+ /**
21
+ * <p>The service encountered an internal error and is unable to complete the request.</p>
22
+ * @public
23
+ */
24
+ export declare class InternalServerException extends __BaseException {
25
+ readonly name: "InternalServerException";
26
+ readonly $fault: "server";
27
+ $retryable: {};
28
+ /**
29
+ * <p>Description of the error.</p>
30
+ * @public
31
+ */
32
+ Message: string | undefined;
33
+ /**
34
+ * @internal
35
+ */
36
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
37
+ }
38
+ /**
39
+ * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
40
+ * @public
41
+ */
42
+ export declare class ResourceNotFoundException extends __BaseException {
43
+ readonly name: "ResourceNotFoundException";
44
+ readonly $fault: "client";
45
+ /**
46
+ * <p>Description of the error.</p>
47
+ * @public
48
+ */
49
+ Message: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p>The request would cause the resource to exceed an allowed service quota. Resolve the issue before you try again.</p>
57
+ * @public
58
+ */
59
+ export declare class ServiceQuotaExceededException extends __BaseException {
60
+ readonly name: "ServiceQuotaExceededException";
61
+ readonly $fault: "client";
62
+ /**
63
+ * <p>Description of the error.</p>
64
+ * @public
65
+ */
66
+ Message: string | undefined;
67
+ /**
68
+ * @internal
69
+ */
70
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
71
+ }
72
+ /**
73
+ * <p>The request was denied due to request throttling. Retry the request after the suggested wait time.</p>
74
+ * @public
75
+ */
76
+ export declare class ThrottlingException extends __BaseException {
77
+ readonly name: "ThrottlingException";
78
+ readonly $fault: "client";
79
+ $retryable: {
80
+ throttling: boolean;
81
+ };
82
+ /**
83
+ * <p>Description of the error.</p>
84
+ * @public
85
+ */
86
+ Message: string | undefined;
87
+ /**
88
+ * @internal
89
+ */
90
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
91
+ }
92
+ /**
93
+ * <p>One or more parameter values in the request fail to satisfy the specified constraints. Correct the invalid parameter values before retrying the request.</p>
94
+ * @public
95
+ */
96
+ export declare class ValidationException extends __BaseException {
97
+ readonly name: "ValidationException";
98
+ readonly $fault: "client";
99
+ /**
100
+ * <p>Description of the error.</p>
101
+ * @public
102
+ */
103
+ Message: string | undefined;
104
+ /**
105
+ * @internal
106
+ */
107
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
108
+ }
109
+ /**
110
+ * <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.</p>
111
+ * @public
112
+ */
113
+ export declare class ConflictException extends __BaseException {
114
+ readonly name: "ConflictException";
115
+ readonly $fault: "client";
116
+ /**
117
+ * <p>Description of the error.</p>
118
+ * @public
119
+ */
120
+ Message: string | undefined;
121
+ /**
122
+ * @internal
123
+ */
124
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
125
+ }
@@ -1,22 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { GameLiftStreamsServiceException as __BaseException } from "./GameLiftStreamsServiceException";
3
- /**
4
- * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the permissions before you try again.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- /**
11
- * <p>Description of the error.</p>
12
- * @public
13
- */
14
- Message: string | undefined;
15
- /**
16
- * @internal
17
- */
18
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
19
- }
1
+ import { ApplicationStatus, ApplicationStatusReason, ExportFilesStatus, Protocol, ReplicationStatusType, RuntimeEnvironmentType, StreamClass, StreamGroupLocationStatus, StreamGroupStatus, StreamGroupStatusReason, StreamSessionStatus, StreamSessionStatusReason } from "./enums";
20
2
  /**
21
3
  * <p>Configuration settings that define a stream group's stream capacity for a location. When configuring a location for the first time, you must specify a numeric value for at least one of the two capacity types. To update the capacity for an existing stream group, call <a href="https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_UpdateStreamGroup.html">UpdateStreamGroup</a>. To add a new location and specify its capacity, call <a href="https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_AddStreamGroupLocations.html">AddStreamGroupLocations</a>.</p>
22
4
  * @public
@@ -53,20 +35,6 @@ export interface AddStreamGroupLocationsInput {
53
35
  */
54
36
  LocationConfigurations: LocationConfiguration[] | undefined;
55
37
  }
56
- /**
57
- * @public
58
- * @enum
59
- */
60
- export declare const StreamGroupLocationStatus: {
61
- readonly ACTIVATING: "ACTIVATING";
62
- readonly ACTIVE: "ACTIVE";
63
- readonly ERROR: "ERROR";
64
- readonly REMOVING: "REMOVING";
65
- };
66
- /**
67
- * @public
68
- */
69
- export type StreamGroupLocationStatus = (typeof StreamGroupLocationStatus)[keyof typeof StreamGroupLocationStatus];
70
38
  /**
71
39
  * <p>Represents a location and its corresponding stream capacity and status.</p>
72
40
  * @public
@@ -123,152 +91,6 @@ export interface AddStreamGroupLocationsOutput {
123
91
  */
124
92
  Locations: LocationState[] | undefined;
125
93
  }
126
- /**
127
- * <p>The service encountered an internal error and is unable to complete the request.</p>
128
- * @public
129
- */
130
- export declare class InternalServerException extends __BaseException {
131
- readonly name: "InternalServerException";
132
- readonly $fault: "server";
133
- $retryable: {};
134
- /**
135
- * <p>Description of the error.</p>
136
- * @public
137
- */
138
- Message: string | undefined;
139
- /**
140
- * @internal
141
- */
142
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
143
- }
144
- /**
145
- * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
146
- * @public
147
- */
148
- export declare class ResourceNotFoundException extends __BaseException {
149
- readonly name: "ResourceNotFoundException";
150
- readonly $fault: "client";
151
- /**
152
- * <p>Description of the error.</p>
153
- * @public
154
- */
155
- Message: string | undefined;
156
- /**
157
- * @internal
158
- */
159
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
160
- }
161
- /**
162
- * <p>The request would cause the resource to exceed an allowed service quota. Resolve the issue before you try again.</p>
163
- * @public
164
- */
165
- export declare class ServiceQuotaExceededException extends __BaseException {
166
- readonly name: "ServiceQuotaExceededException";
167
- readonly $fault: "client";
168
- /**
169
- * <p>Description of the error.</p>
170
- * @public
171
- */
172
- Message: string | undefined;
173
- /**
174
- * @internal
175
- */
176
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
177
- }
178
- /**
179
- * <p>The request was denied due to request throttling. Retry the request after the suggested wait time.</p>
180
- * @public
181
- */
182
- export declare class ThrottlingException extends __BaseException {
183
- readonly name: "ThrottlingException";
184
- readonly $fault: "client";
185
- $retryable: {
186
- throttling: boolean;
187
- };
188
- /**
189
- * <p>Description of the error.</p>
190
- * @public
191
- */
192
- Message: string | undefined;
193
- /**
194
- * @internal
195
- */
196
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
197
- }
198
- /**
199
- * <p>One or more parameter values in the request fail to satisfy the specified constraints. Correct the invalid parameter values before retrying the request.</p>
200
- * @public
201
- */
202
- export declare class ValidationException extends __BaseException {
203
- readonly name: "ValidationException";
204
- readonly $fault: "client";
205
- /**
206
- * <p>Description of the error.</p>
207
- * @public
208
- */
209
- Message: string | undefined;
210
- /**
211
- * @internal
212
- */
213
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
214
- }
215
- /**
216
- * @public
217
- * @enum
218
- */
219
- export declare const ApplicationStatus: {
220
- readonly DELETING: "DELETING";
221
- readonly ERROR: "ERROR";
222
- readonly INITIALIZED: "INITIALIZED";
223
- readonly PROCESSING: "PROCESSING";
224
- readonly READY: "READY";
225
- };
226
- /**
227
- * @public
228
- */
229
- export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
230
- /**
231
- * @public
232
- * @enum
233
- */
234
- export declare const ApplicationStatusReason: {
235
- readonly ACCESS_DENIED: "accessDenied";
236
- readonly INTERNAL_ERROR: "internalError";
237
- };
238
- /**
239
- * @public
240
- */
241
- export type ApplicationStatusReason = (typeof ApplicationStatusReason)[keyof typeof ApplicationStatusReason];
242
- /**
243
- * <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.</p>
244
- * @public
245
- */
246
- export declare class ConflictException extends __BaseException {
247
- readonly name: "ConflictException";
248
- readonly $fault: "client";
249
- /**
250
- * <p>Description of the error.</p>
251
- * @public
252
- */
253
- Message: string | undefined;
254
- /**
255
- * @internal
256
- */
257
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
258
- }
259
- /**
260
- * @public
261
- * @enum
262
- */
263
- export declare const RuntimeEnvironmentType: {
264
- readonly PROTON: "PROTON";
265
- readonly UBUNTU: "UBUNTU";
266
- readonly WINDOWS: "WINDOWS";
267
- };
268
- /**
269
- * @public
270
- */
271
- export type RuntimeEnvironmentType = (typeof RuntimeEnvironmentType)[keyof typeof RuntimeEnvironmentType];
272
94
  /**
273
95
  * <p>Configuration settings that identify the operating system for an application resource. This can also include a compatibility layer and other drivers.</p> <p>A runtime environment can be one of the following:</p> <ul> <li> <p> For Linux applications </p> <ul> <li> <p> Ubuntu 22.04 LTS (<code>Type=UBUNTU, Version=22_04_LTS</code>) </p> </li> </ul> </li> <li> <p> For Windows applications </p> <ul> <li> <p>Microsoft Windows Server 2022 Base (<code>Type=WINDOWS, Version=2022</code>)</p> </li> <li> <p>Proton 9.0-2 (<code>Type=PROTON, Version=20250516</code>)</p> </li> <li> <p>Proton 8.0-5 (<code>Type=PROTON, Version=20241007</code>)</p> </li> <li> <p>Proton 8.0-2c (<code>Type=PROTON, Version=20230704</code>)</p> </li> </ul> </li> </ul>
274
96
  * @public
@@ -330,18 +152,6 @@ export interface CreateApplicationInput {
330
152
  */
331
153
  ClientToken?: string | undefined;
332
154
  }
333
- /**
334
- * @public
335
- * @enum
336
- */
337
- export declare const ReplicationStatusType: {
338
- readonly COMPLETED: "COMPLETED";
339
- readonly REPLICATING: "REPLICATING";
340
- };
341
- /**
342
- * @public
343
- */
344
- export type ReplicationStatusType = (typeof ReplicationStatusType)[keyof typeof ReplicationStatusType];
345
155
  /**
346
156
  * <p>Represents the status of the replication of an application to a location. An application cannot be streamed from a location until it has finished replicating there.</p>
347
157
  * @public
@@ -729,22 +539,6 @@ export interface AssociateApplicationsOutput {
729
539
  */
730
540
  ApplicationArns?: string[] | undefined;
731
541
  }
732
- /**
733
- * @public
734
- * @enum
735
- */
736
- export declare const StreamClass: {
737
- readonly gen4n_high: "gen4n_high";
738
- readonly gen4n_ultra: "gen4n_ultra";
739
- readonly gen4n_win2022: "gen4n_win2022";
740
- readonly gen5n_high: "gen5n_high";
741
- readonly gen5n_ultra: "gen5n_ultra";
742
- readonly gen5n_win2022: "gen5n_win2022";
743
- };
744
- /**
745
- * @public
746
- */
747
- export type StreamClass = (typeof StreamClass)[keyof typeof StreamClass];
748
542
  /**
749
543
  * @public
750
544
  */
@@ -796,35 +590,6 @@ export interface DefaultApplication {
796
590
  */
797
591
  Arn?: string | undefined;
798
592
  }
799
- /**
800
- * @public
801
- * @enum
802
- */
803
- export declare const StreamGroupStatus: {
804
- readonly ACTIVATING: "ACTIVATING";
805
- readonly ACTIVE: "ACTIVE";
806
- readonly ACTIVE_WITH_ERRORS: "ACTIVE_WITH_ERRORS";
807
- readonly DELETING: "DELETING";
808
- readonly ERROR: "ERROR";
809
- readonly EXPIRED: "EXPIRED";
810
- readonly UPDATING_LOCATIONS: "UPDATING_LOCATIONS";
811
- };
812
- /**
813
- * @public
814
- */
815
- export type StreamGroupStatus = (typeof StreamGroupStatus)[keyof typeof StreamGroupStatus];
816
- /**
817
- * @public
818
- * @enum
819
- */
820
- export declare const StreamGroupStatusReason: {
821
- readonly INTERNAL_ERROR: "internalError";
822
- readonly NO_AVAILABLE_INSTANCES: "noAvailableInstances";
823
- };
824
- /**
825
- * @public
826
- */
827
- export type StreamGroupStatusReason = (typeof StreamGroupStatusReason)[keyof typeof StreamGroupStatusReason];
828
593
  /**
829
594
  * @public
830
595
  */
@@ -965,19 +730,6 @@ export interface DisassociateApplicationsOutput {
965
730
  */
966
731
  ApplicationArns?: string[] | undefined;
967
732
  }
968
- /**
969
- * @public
970
- * @enum
971
- */
972
- export declare const ExportFilesStatus: {
973
- readonly FAILED: "FAILED";
974
- readonly PENDING: "PENDING";
975
- readonly SUCCEEDED: "SUCCEEDED";
976
- };
977
- /**
978
- * @public
979
- */
980
- export type ExportFilesStatus = (typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
981
733
  /**
982
734
  * <p>Provides details about the stream session's exported files. </p>
983
735
  * @public
@@ -1039,55 +791,6 @@ export interface GetStreamSessionInput {
1039
791
  */
1040
792
  StreamSessionIdentifier: string | undefined;
1041
793
  }
1042
- /**
1043
- * @public
1044
- * @enum
1045
- */
1046
- export declare const Protocol: {
1047
- readonly WEBRTC: "WebRTC";
1048
- };
1049
- /**
1050
- * @public
1051
- */
1052
- export type Protocol = (typeof Protocol)[keyof typeof Protocol];
1053
- /**
1054
- * @public
1055
- * @enum
1056
- */
1057
- export declare const StreamSessionStatus: {
1058
- readonly ACTIVATING: "ACTIVATING";
1059
- readonly ACTIVE: "ACTIVE";
1060
- readonly CONNECTED: "CONNECTED";
1061
- readonly ERROR: "ERROR";
1062
- readonly PENDING_CLIENT_RECONNECTION: "PENDING_CLIENT_RECONNECTION";
1063
- readonly RECONNECTING: "RECONNECTING";
1064
- readonly TERMINATED: "TERMINATED";
1065
- readonly TERMINATING: "TERMINATING";
1066
- };
1067
- /**
1068
- * @public
1069
- */
1070
- export type StreamSessionStatus = (typeof StreamSessionStatus)[keyof typeof StreamSessionStatus];
1071
- /**
1072
- * @public
1073
- * @enum
1074
- */
1075
- export declare const StreamSessionStatusReason: {
1076
- readonly API_TERMINATED: "apiTerminated";
1077
- readonly APPLICATION_EXIT: "applicationExit";
1078
- readonly APP_LOG_S3_DESTINATION_ERROR: "applicationLogS3DestinationError";
1079
- readonly CONNECTION_TIMEOUT: "connectionTimeout";
1080
- readonly IDLE_TIMEOUT: "idleTimeout";
1081
- readonly INTERNAL_ERROR: "internalError";
1082
- readonly INVALID_SIGNAL_REQUEST: "invalidSignalRequest";
1083
- readonly MAX_SESSION_LENGTH_TIMEOUT: "maxSessionLengthTimeout";
1084
- readonly PLACEMENT_TIMEOUT: "placementTimeout";
1085
- readonly RECONNECTION_TIMEOUT: "reconnectionTimeout";
1086
- };
1087
- /**
1088
- * @public
1089
- */
1090
- export type StreamSessionStatusReason = (typeof StreamSessionStatusReason)[keyof typeof StreamSessionStatusReason];
1091
794
  /**
1092
795
  * @public
1093
796
  */
@@ -6,5 +6,7 @@ export { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration"
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { GameLiftStreamsServiceException } from "./models/GameLiftStreamsServiceException";