@aws-sdk/client-gameliftstreams 3.1096.0 → 3.1098.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.
Files changed (40) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +184 -4
  3. package/dist-es/GameLiftStreams.js +12 -0
  4. package/dist-es/commands/CreateStreamUrlCommand.js +4 -0
  5. package/dist-es/commands/GetStreamUrlCommand.js +4 -0
  6. package/dist-es/commands/ListApplicationShaderCachesCommand.js +4 -0
  7. package/dist-es/commands/ListStreamUrlsCommand.js +4 -0
  8. package/dist-es/commands/RevokeStreamUrlCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +27 -3
  11. package/dist-es/pagination/ListStreamUrlsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +107 -0
  14. package/dist-types/GameLiftStreams.d.ts +43 -0
  15. package/dist-types/GameLiftStreamsClient.d.ts +7 -2
  16. package/dist-types/commands/CreateStreamUrlCommand.d.ts +144 -0
  17. package/dist-types/commands/GetStreamUrlCommand.d.ts +135 -0
  18. package/dist-types/commands/ListApplicationShaderCachesCommand.d.ts +97 -0
  19. package/dist-types/commands/ListStreamUrlsCommand.d.ts +103 -0
  20. package/dist-types/commands/RevokeStreamUrlCommand.d.ts +86 -0
  21. package/dist-types/commands/index.d.ts +5 -0
  22. package/dist-types/models/enums.d.ts +64 -8
  23. package/dist-types/models/models_0.d.ts +520 -43
  24. package/dist-types/pagination/ListStreamUrlsPaginator.d.ts +7 -0
  25. package/dist-types/pagination/index.d.ts +1 -0
  26. package/dist-types/schemas/schemas_0.d.ts +16 -0
  27. package/dist-types/ts3.4/GameLiftStreams.d.ts +93 -0
  28. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +30 -0
  29. package/dist-types/ts3.4/commands/CreateStreamUrlCommand.d.ts +38 -0
  30. package/dist-types/ts3.4/commands/GetStreamUrlCommand.d.ts +38 -0
  31. package/dist-types/ts3.4/commands/ListApplicationShaderCachesCommand.d.ts +42 -0
  32. package/dist-types/ts3.4/commands/ListStreamUrlsCommand.d.ts +38 -0
  33. package/dist-types/ts3.4/commands/RevokeStreamUrlCommand.d.ts +38 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  35. package/dist-types/ts3.4/models/enums.d.ts +33 -4
  36. package/dist-types/ts3.4/models/models_0.d.ts +122 -12
  37. package/dist-types/ts3.4/pagination/ListStreamUrlsPaginator.d.ts +11 -0
  38. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  40. package/package.json +6 -6
@@ -57,14 +57,27 @@ export const StreamGroupStatusReason = {
57
57
  INTERNAL_ERROR: "internalError",
58
58
  NO_AVAILABLE_INSTANCES: "noAvailableInstances",
59
59
  };
60
+ export const Protocol = {
61
+ WEBRTC: "WebRTC",
62
+ };
63
+ export const StreamUrlStatus = {
64
+ ACTIVE: "ACTIVE",
65
+ EXPIRED: "EXPIRED",
66
+ LIMIT_REACHED: "LIMIT_REACHED",
67
+ REVOKED: "REVOKED",
68
+ };
69
+ export const StreamUrlStatusReason = {
70
+ APPLICATION_DELETED: "applicationDeleted",
71
+ REVOKED_AND_SESSIONS_TERMINATED: "revokedAndSessionsTerminated",
72
+ REVOKED_AND_TERMINATING_SESSIONS: "revokedAndTerminatingSessions",
73
+ STREAM_GROUP_DELETED: "streamGroupDeleted",
74
+ USER_REVOKED: "userRevoked",
75
+ };
60
76
  export const ExportFilesStatus = {
61
77
  FAILED: "FAILED",
62
78
  PENDING: "PENDING",
63
79
  SUCCEEDED: "SUCCEEDED",
64
80
  };
65
- export const Protocol = {
66
- WEBRTC: "WebRTC",
67
- };
68
81
  export const StreamSessionStatus = {
69
82
  ACTIVATING: "ACTIVATING",
70
83
  ACTIVE: "ACTIVE",
@@ -88,3 +101,14 @@ export const StreamSessionStatusReason = {
88
101
  PLACEMENT_TIMEOUT: "placementTimeout",
89
102
  RECONNECTION_TIMEOUT: "reconnectionTimeout",
90
103
  };
104
+ export const ShaderCacheStatus = {
105
+ DELETING: "DELETING",
106
+ ERROR: "ERROR",
107
+ INITIALIZED: "INITIALIZED",
108
+ PROCESSING: "PROCESSING",
109
+ READY: "READY",
110
+ };
111
+ export const RevocationMode = {
112
+ REVOKE_AND_TERMINATE_SESSIONS: "REVOKE_AND_TERMINATE_SESSIONS",
113
+ REVOKE_URL: "REVOKE_URL",
114
+ };
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListStreamUrlsCommand, } from "../commands/ListStreamUrlsCommand";
3
+ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
4
+ export const paginateListStreamUrls = createPaginator(GameLiftStreamsClient, ListStreamUrlsCommand, "NextToken", "NextToken", "MaxResults");
@@ -3,3 +3,4 @@ export * from "./ListApplicationsPaginator";
3
3
  export * from "./ListStreamGroupsPaginator";
4
4
  export * from "./ListStreamSessionsPaginator";
5
5
  export * from "./ListStreamSessionsByAccountPaginator";
6
+ export * from "./ListStreamUrlsPaginator";
@@ -35,6 +35,9 @@ const _CSSASO = "CreateStreamSessionAdminShellOutput";
35
35
  const _CSSC = "CreateStreamSessionConnection";
36
36
  const _CSSCI = "CreateStreamSessionConnectionInput";
37
37
  const _CSSCO = "CreateStreamSessionConnectionOutput";
38
+ const _CSU = "CreateStreamUrl";
39
+ const _CSUI = "CreateStreamUrlInput";
40
+ const _CSUO = "CreateStreamUrlOutput";
38
41
  const _CT = "ClientToken";
39
42
  const _CTS = "ConnectionTimeoutSeconds";
40
43
  const _D = "Description";
@@ -64,6 +67,9 @@ const _GSGO = "GetStreamGroupOutput";
64
67
  const _GSS = "GetStreamSession";
65
68
  const _GSSI = "GetStreamSessionInput";
66
69
  const _GSSO = "GetStreamSessionOutput";
70
+ const _GSU = "GetStreamUrl";
71
+ const _GSUI = "GetStreamUrlInput";
72
+ const _GSUO = "GetStreamUrlOutput";
67
73
  const _H = "Height";
68
74
  const _I = "Identifier";
69
75
  const _IC = "IdleCapacity";
@@ -77,6 +83,9 @@ const _L = "Locations";
77
83
  const _LA = "ListApplications";
78
84
  const _LAI = "ListApplicationsInput";
79
85
  const _LAO = "ListApplicationsOutput";
86
+ const _LASC = "ListApplicationShaderCaches";
87
+ const _LASCI = "ListApplicationShaderCachesInput";
88
+ const _LASCO = "ListApplicationShaderCachesOutput";
80
89
  const _LC = "LocationConfigurations";
81
90
  const _LCo = "LocationConfiguration";
82
91
  const _LFLU = "LogFileLocationUri";
@@ -91,6 +100,9 @@ const _LSSBAI = "ListStreamSessionsByAccountInput";
91
100
  const _LSSBAO = "ListStreamSessionsByAccountOutput";
92
101
  const _LSSI = "ListStreamSessionsInput";
93
102
  const _LSSO = "ListStreamSessionsOutput";
103
+ const _LSU = "ListStreamUrls";
104
+ const _LSUI = "ListStreamUrlsInput";
105
+ const _LSUO = "ListStreamUrlsOutput";
94
106
  const _LSo = "LocationState";
95
107
  const _LTFR = "ListTagsForResource";
96
108
  const _LTFRR = "ListTagsForResourceRequest";
@@ -110,14 +122,23 @@ const _RA = "RoleArn";
110
122
  const _RAe = "ResourceArn";
111
123
  const _RC = "RequestedCapacity";
112
124
  const _RE = "RuntimeEnvironment";
125
+ const _RM = "RevocationMode";
113
126
  const _RNFE = "ResourceNotFoundException";
114
127
  const _RS = "ReplicationStatuses";
115
128
  const _RSGL = "RemoveStreamGroupLocations";
116
129
  const _RSGLI = "RemoveStreamGroupLocationsInput";
130
+ const _RSU = "RevokeStreamUrl";
131
+ const _RSUI = "RevokeStreamUrlInput";
117
132
  const _RSe = "ReplicationStatus";
133
+ const _RU = "RemainingUses";
118
134
  const _S = "Status";
135
+ const _SB = "StorageBytes";
119
136
  const _SC = "StreamClass";
137
+ const _SCS = "ShaderCacheSummary";
138
+ const _SCSL = "ShaderCacheSummaryList";
139
+ const _SGA = "StreamGroupArn";
120
140
  const _SGI = "StreamGroupId";
141
+ const _SGIt = "StreamGroupIdentifier";
121
142
  const _SGS = "StreamGroupSummary";
122
143
  const _SGSL = "StreamGroupSummaryList";
123
144
  const _SI = "SessionId";
@@ -126,14 +147,20 @@ const _SQEE = "ServiceQuotaExceededException";
126
147
  const _SR = "SignalRequest";
127
148
  const _SRi = "SignalResponse";
128
149
  const _SRt = "StatusReason";
150
+ const _SS = "StreamSessions";
129
151
  const _SSANRE = "StreamSessionAccessNotReadyException";
130
152
  const _SSI = "StreamSessionIdentifier";
131
153
  const _SSS = "StreamSessionSummary";
132
154
  const _SSSI = "StartStreamSessionInput";
133
155
  const _SSSL = "StreamSessionSummaryList";
134
156
  const _SSSO = "StartStreamSessionOutput";
157
+ const _SSSU = "StreamSessionStreamUrl";
135
158
  const _SSSt = "StartStreamSession";
136
159
  const _SU = "StreamUrl";
160
+ const _SUI = "StreamUrlId";
161
+ const _SUIt = "StreamUrlIdentifier";
162
+ const _SUS = "StreamUrlSummary";
163
+ const _SUSL = "StreamUrlSummaryList";
137
164
  const _SWC = "SharedWithClient";
138
165
  const _T = "Tags";
139
166
  const _TE = "ThrottlingException";
@@ -151,7 +178,9 @@ const _Ty = "Type";
151
178
  const _UA = "UpdateApplication";
152
179
  const _UAI = "UpdateApplicationInput";
153
180
  const _UAO = "UpdateApplicationOutput";
181
+ const _UEAM = "UrlExpiresAfterMinutes";
154
182
  const _UI = "UserId";
183
+ const _UL = "UsageLimit";
155
184
  const _UR = "UntagResource";
156
185
  const _URR = "UntagResourceRequest";
157
186
  const _URRn = "UntagResourceResponse";
@@ -237,6 +266,7 @@ export const errorTypeRegistries = [
237
266
  var IamRoleArn = [0, n0, _IRA, 8, 0];
238
267
  var SignalRequest = [0, n0, _SR, 8, 0];
239
268
  var SignalResponse = [0, n0, _SRi, 8, 0];
269
+ var StreamSessionStreamUrl = [0, n0, _SSSU, 8, 0];
240
270
  var TokenValue = [0, n0, _TV, 8, 0];
241
271
  export var AddStreamGroupLocationsInput$ = [3, n0, _ASGLI,
242
272
  0,
@@ -303,6 +333,16 @@ export var CreateStreamSessionConnectionOutput$ = [3, n0, _CSSCO,
303
333
  [_SRi],
304
334
  [[() => SignalResponse, 0]]
305
335
  ];
336
+ export var CreateStreamUrlInput$ = [3, n0, _CSUI,
337
+ 0,
338
+ [_I, _AIp, _P, _UEAM, _L, _UL, _D, _SLS, _ALA, _AEV, _RA, _DC, _CT],
339
+ [[0, 1], 0, 0, 1, 64 | 0, 1, 0, 1, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$, [0, 4]], 5
340
+ ];
341
+ export var CreateStreamUrlOutput$ = [3, n0, _CSUO,
342
+ 0,
343
+ [_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _P, _L, _SLS, _D, _ALA, _AEV, _RA, _DC],
344
+ [0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 0, 64 | 0, 1, 0, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$], 1
345
+ ];
306
346
  export var DefaultApplication$ = [3, n0, _DA,
307
347
  0,
308
348
  [_Id, _A],
@@ -378,6 +418,26 @@ export var GetStreamSessionOutput$ = [3, n0, _GSSO,
378
418
  [_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM, _RA, _DC],
379
419
  [0, 0, 0, 0, 0, 0, 0, 0, [() => SignalRequest, 0], [() => SignalResponse, 0], 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, [() => IamRoleArn, 0], () => DisplayConfiguration$]
380
420
  ];
421
+ export var GetStreamUrlInput$ = [3, n0, _GSUI,
422
+ 0,
423
+ [_I, _SUIt],
424
+ [[0, 1], [0, 1]], 2
425
+ ];
426
+ export var GetStreamUrlOutput$ = [3, n0, _GSUO,
427
+ 0,
428
+ [_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _P, _L, _SLS, _D, _ALA, _AEV, _RA, _DC, _SS],
429
+ [0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 0, 64 | 0, 1, 0, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$, [() => StreamSessionSummaryList, 0]], 1
430
+ ];
431
+ export var ListApplicationShaderCachesInput$ = [3, n0, _LASCI,
432
+ 0,
433
+ [_I],
434
+ [[0, 1]], 1
435
+ ];
436
+ export var ListApplicationShaderCachesOutput$ = [3, n0, _LASCO,
437
+ 0,
438
+ [_It],
439
+ [() => ShaderCacheSummaryList]
440
+ ];
381
441
  export var ListApplicationsInput$ = [3, n0, _LAI,
382
442
  0,
383
443
  [_NT, _MR],
@@ -418,6 +478,16 @@ export var ListStreamSessionsOutput$ = [3, n0, _LSSO,
418
478
  [_It, _NT],
419
479
  [[() => StreamSessionSummaryList, 0], 0]
420
480
  ];
481
+ export var ListStreamUrlsInput$ = [3, n0, _LSUI,
482
+ 0,
483
+ [_S, _SGIt, _NT, _MR],
484
+ [[0, { [_hQ]: _S }], [0, { [_hQ]: _SGIt }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
485
+ ];
486
+ export var ListStreamUrlsOutput$ = [3, n0, _LSUO,
487
+ 0,
488
+ [_It, _NT],
489
+ [[() => StreamUrlSummaryList, 0], 0]
490
+ ];
421
491
  export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
422
492
  0,
423
493
  [_RAe],
@@ -458,11 +528,21 @@ export var Resolution$ = [3, n0, _R,
458
528
  [_W, _H],
459
529
  [1, 1], 2
460
530
  ];
531
+ export var RevokeStreamUrlInput$ = [3, n0, _RSUI,
532
+ 0,
533
+ [_I, _SUIt, _RM],
534
+ [[0, 1], [0, 1], 0], 2
535
+ ];
461
536
  export var RuntimeEnvironment$ = [3, n0, _RE,
462
537
  0,
463
538
  [_Ty, _V],
464
539
  [0, 0], 2
465
540
  ];
541
+ export var ShaderCacheSummary$ = [3, n0, _SCS,
542
+ 0,
543
+ [_I, _AAp, _S, _LUA, _SB, _ASG],
544
+ [0, 0, 0, 4, 1, 64 | 0], 2
545
+ ];
466
546
  export var StartStreamSessionInput$ = [3, n0, _SSSI,
467
547
  0,
468
548
  [_I, _P, _SR, _AIp, _CT, _D, _UI, _L, _CTS, _SLS, _ALA, _AEV, _PSC, _RA, _DC],
@@ -483,6 +563,11 @@ export var StreamSessionSummary$ = [3, n0, _SSS,
483
563
  [_A, _UI, _S, _SRt, _P, _LUA, _CA, _AAp, _EFM, _Lo, _RA],
484
564
  [0, 0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0, [() => IamRoleArn, 0]]
485
565
  ];
566
+ export var StreamUrlSummary$ = [3, n0, _SUS,
567
+ 0,
568
+ [_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _SLS, _D],
569
+ [0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 1, 0], 1
570
+ ];
486
571
  export var TagResourceRequest$ = [3, n0, _TRR,
487
572
  0,
488
573
  [_RAe, _T],
@@ -558,6 +643,9 @@ var LocationStates = [1, n0, _LS,
558
643
  var ReplicationStatuses = [1, n0, _RS,
559
644
  0, () => ReplicationStatus$
560
645
  ];
646
+ var ShaderCacheSummaryList = [1, n0, _SCSL,
647
+ 0, () => ShaderCacheSummary$
648
+ ];
561
649
  var StreamGroupSummaryList = [1, n0, _SGSL,
562
650
  0, () => StreamGroupSummary$
563
651
  ];
@@ -565,6 +653,10 @@ var StreamSessionSummaryList = [1, n0, _SSSL,
565
653
  0, [() => StreamSessionSummary$,
566
654
  0]
567
655
  ];
656
+ var StreamUrlSummaryList = [1, n0, _SUSL,
657
+ 0, [() => StreamUrlSummary$,
658
+ 0]
659
+ ];
568
660
  var TagKeyList = 64 | 0;
569
661
  var EnvironmentVariables = 128 | 0;
570
662
  var Tags = 128 | 0;
@@ -586,6 +678,9 @@ export var CreateStreamSessionAdminShell$ = [9, n0, _CSSAS,
586
678
  export var CreateStreamSessionConnection$ = [9, n0, _CSSC,
587
679
  { [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] }, () => CreateStreamSessionConnectionInput$, () => CreateStreamSessionConnectionOutput$
588
680
  ];
681
+ export var CreateStreamUrl$ = [9, n0, _CSU,
682
+ { [_h]: ["POST", "/streamgroups/{Identifier}/streamurls", 201] }, () => CreateStreamUrlInput$, () => CreateStreamUrlOutput$
683
+ ];
589
684
  export var DeleteApplication$ = [9, n0, _DAe,
590
685
  { [_h]: ["DELETE", "/applications/{Identifier}", 204] }, () => DeleteApplicationInput$, () => __Unit
591
686
  ];
@@ -607,9 +702,15 @@ export var GetStreamGroup$ = [9, n0, _GSG,
607
702
  export var GetStreamSession$ = [9, n0, _GSS,
608
703
  { [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] }, () => GetStreamSessionInput$, () => GetStreamSessionOutput$
609
704
  ];
705
+ export var GetStreamUrl$ = [9, n0, _GSU,
706
+ { [_h]: ["GET", "/streamgroups/{Identifier}/streamurls/{StreamUrlIdentifier}", 200] }, () => GetStreamUrlInput$, () => GetStreamUrlOutput$
707
+ ];
610
708
  export var ListApplications$ = [9, n0, _LA,
611
709
  { [_h]: ["GET", "/applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
612
710
  ];
711
+ export var ListApplicationShaderCaches$ = [9, n0, _LASC,
712
+ { [_h]: ["GET", "/applications/{Identifier}/shadercaches", 200] }, () => ListApplicationShaderCachesInput$, () => ListApplicationShaderCachesOutput$
713
+ ];
613
714
  export var ListStreamGroups$ = [9, n0, _LSG,
614
715
  { [_h]: ["GET", "/streamgroups", 200] }, () => ListStreamGroupsInput$, () => ListStreamGroupsOutput$
615
716
  ];
@@ -619,12 +720,18 @@ export var ListStreamSessions$ = [9, n0, _LSS,
619
720
  export var ListStreamSessionsByAccount$ = [9, n0, _LSSBA,
620
721
  { [_h]: ["GET", "/streamsessions", 200] }, () => ListStreamSessionsByAccountInput$, () => ListStreamSessionsByAccountOutput$
621
722
  ];
723
+ export var ListStreamUrls$ = [9, n0, _LSU,
724
+ { [_h]: ["GET", "/streamurls", 200] }, () => ListStreamUrlsInput$, () => ListStreamUrlsOutput$
725
+ ];
622
726
  export var ListTagsForResource$ = [9, n0, _LTFR,
623
727
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
624
728
  ];
625
729
  export var RemoveStreamGroupLocations$ = [9, n0, _RSGL,
626
730
  { [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] }, () => RemoveStreamGroupLocationsInput$, () => __Unit
627
731
  ];
732
+ export var RevokeStreamUrl$ = [9, n0, _RSU,
733
+ { [_h]: ["POST", "/streamgroups/{Identifier}/streamurls/{StreamUrlIdentifier}/revoke", 204] }, () => RevokeStreamUrlInput$, () => __Unit
734
+ ];
628
735
  export var StartStreamSession$ = [9, n0, _SSSt,
629
736
  { [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] }, () => StartStreamSessionInput$, () => StartStreamSessionOutput$
630
737
  ];
@@ -6,6 +6,7 @@ import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput
6
6
  import { type CreateStreamGroupCommandInput, type CreateStreamGroupCommandOutput } from "./commands/CreateStreamGroupCommand";
7
7
  import { type CreateStreamSessionAdminShellCommandInput, type CreateStreamSessionAdminShellCommandOutput } from "./commands/CreateStreamSessionAdminShellCommand";
8
8
  import { type CreateStreamSessionConnectionCommandInput, type CreateStreamSessionConnectionCommandOutput } from "./commands/CreateStreamSessionConnectionCommand";
9
+ import { type CreateStreamUrlCommandInput, type CreateStreamUrlCommandOutput } from "./commands/CreateStreamUrlCommand";
9
10
  import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
10
11
  import { type DeleteStreamGroupCommandInput, type DeleteStreamGroupCommandOutput } from "./commands/DeleteStreamGroupCommand";
11
12
  import { type DisassociateApplicationsCommandInput, type DisassociateApplicationsCommandOutput } from "./commands/DisassociateApplicationsCommand";
@@ -13,12 +14,16 @@ import { type ExportStreamSessionFilesCommandInput, type ExportStreamSessionFile
13
14
  import { type GetApplicationCommandInput, type GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
14
15
  import { type GetStreamGroupCommandInput, type GetStreamGroupCommandOutput } from "./commands/GetStreamGroupCommand";
15
16
  import { type GetStreamSessionCommandInput, type GetStreamSessionCommandOutput } from "./commands/GetStreamSessionCommand";
17
+ import { type GetStreamUrlCommandInput, type GetStreamUrlCommandOutput } from "./commands/GetStreamUrlCommand";
16
18
  import { type ListApplicationsCommandInput, type ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
19
+ import { type ListApplicationShaderCachesCommandInput, type ListApplicationShaderCachesCommandOutput } from "./commands/ListApplicationShaderCachesCommand";
17
20
  import { type ListStreamGroupsCommandInput, type ListStreamGroupsCommandOutput } from "./commands/ListStreamGroupsCommand";
18
21
  import { type ListStreamSessionsByAccountCommandInput, type ListStreamSessionsByAccountCommandOutput } from "./commands/ListStreamSessionsByAccountCommand";
19
22
  import { type ListStreamSessionsCommandInput, type ListStreamSessionsCommandOutput } from "./commands/ListStreamSessionsCommand";
23
+ import { type ListStreamUrlsCommandInput, type ListStreamUrlsCommandOutput } from "./commands/ListStreamUrlsCommand";
20
24
  import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
21
25
  import { type RemoveStreamGroupLocationsCommandInput, type RemoveStreamGroupLocationsCommandOutput } from "./commands/RemoveStreamGroupLocationsCommand";
26
+ import { type RevokeStreamUrlCommandInput, type RevokeStreamUrlCommandOutput } from "./commands/RevokeStreamUrlCommand";
22
27
  import { type StartStreamSessionCommandInput, type StartStreamSessionCommandOutput } from "./commands/StartStreamSessionCommand";
23
28
  import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
24
29
  import { type TerminateStreamSessionCommandInput, type TerminateStreamSessionCommandOutput } from "./commands/TerminateStreamSessionCommand";
@@ -64,6 +69,12 @@ export interface GameLiftStreams {
64
69
  createStreamSessionConnection(args: CreateStreamSessionConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamSessionConnectionCommandOutput>;
65
70
  createStreamSessionConnection(args: CreateStreamSessionConnectionCommandInput, cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void): void;
66
71
  createStreamSessionConnection(args: CreateStreamSessionConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void): void;
72
+ /**
73
+ * @see {@link CreateStreamUrlCommand}
74
+ */
75
+ createStreamUrl(args: CreateStreamUrlCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamUrlCommandOutput>;
76
+ createStreamUrl(args: CreateStreamUrlCommandInput, cb: (err: any, data?: CreateStreamUrlCommandOutput) => void): void;
77
+ createStreamUrl(args: CreateStreamUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamUrlCommandOutput) => void): void;
67
78
  /**
68
79
  * @see {@link DeleteApplicationCommand}
69
80
  */
@@ -106,6 +117,12 @@ export interface GameLiftStreams {
106
117
  getStreamSession(args: GetStreamSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamSessionCommandOutput>;
107
118
  getStreamSession(args: GetStreamSessionCommandInput, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
108
119
  getStreamSession(args: GetStreamSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
120
+ /**
121
+ * @see {@link GetStreamUrlCommand}
122
+ */
123
+ getStreamUrl(args: GetStreamUrlCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamUrlCommandOutput>;
124
+ getStreamUrl(args: GetStreamUrlCommandInput, cb: (err: any, data?: GetStreamUrlCommandOutput) => void): void;
125
+ getStreamUrl(args: GetStreamUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamUrlCommandOutput) => void): void;
109
126
  /**
110
127
  * @see {@link ListApplicationsCommand}
111
128
  */
@@ -113,6 +130,12 @@ export interface GameLiftStreams {
113
130
  listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
114
131
  listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
115
132
  listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
133
+ /**
134
+ * @see {@link ListApplicationShaderCachesCommand}
135
+ */
136
+ listApplicationShaderCaches(args: ListApplicationShaderCachesCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationShaderCachesCommandOutput>;
137
+ listApplicationShaderCaches(args: ListApplicationShaderCachesCommandInput, cb: (err: any, data?: ListApplicationShaderCachesCommandOutput) => void): void;
138
+ listApplicationShaderCaches(args: ListApplicationShaderCachesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationShaderCachesCommandOutput) => void): void;
116
139
  /**
117
140
  * @see {@link ListStreamGroupsCommand}
118
141
  */
@@ -133,6 +156,13 @@ export interface GameLiftStreams {
133
156
  listStreamSessionsByAccount(args: ListStreamSessionsByAccountCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamSessionsByAccountCommandOutput>;
134
157
  listStreamSessionsByAccount(args: ListStreamSessionsByAccountCommandInput, cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void): void;
135
158
  listStreamSessionsByAccount(args: ListStreamSessionsByAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void): void;
159
+ /**
160
+ * @see {@link ListStreamUrlsCommand}
161
+ */
162
+ listStreamUrls(): Promise<ListStreamUrlsCommandOutput>;
163
+ listStreamUrls(args: ListStreamUrlsCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamUrlsCommandOutput>;
164
+ listStreamUrls(args: ListStreamUrlsCommandInput, cb: (err: any, data?: ListStreamUrlsCommandOutput) => void): void;
165
+ listStreamUrls(args: ListStreamUrlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamUrlsCommandOutput) => void): void;
136
166
  /**
137
167
  * @see {@link ListTagsForResourceCommand}
138
168
  */
@@ -145,6 +175,12 @@ export interface GameLiftStreams {
145
175
  removeStreamGroupLocations(args: RemoveStreamGroupLocationsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveStreamGroupLocationsCommandOutput>;
146
176
  removeStreamGroupLocations(args: RemoveStreamGroupLocationsCommandInput, cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void): void;
147
177
  removeStreamGroupLocations(args: RemoveStreamGroupLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void): void;
178
+ /**
179
+ * @see {@link RevokeStreamUrlCommand}
180
+ */
181
+ revokeStreamUrl(args: RevokeStreamUrlCommandInput, options?: __HttpHandlerOptions): Promise<RevokeStreamUrlCommandOutput>;
182
+ revokeStreamUrl(args: RevokeStreamUrlCommandInput, cb: (err: any, data?: RevokeStreamUrlCommandOutput) => void): void;
183
+ revokeStreamUrl(args: RevokeStreamUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeStreamUrlCommandOutput) => void): void;
148
184
  /**
149
185
  * @see {@link StartStreamSessionCommand}
150
186
  */
@@ -209,6 +245,13 @@ export interface GameLiftStreams {
209
245
  * @returns AsyncIterable of {@link ListStreamSessionsByAccountCommandOutput}.
210
246
  */
211
247
  paginateListStreamSessionsByAccount(args?: ListStreamSessionsByAccountCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStreamSessionsByAccountCommandOutput>;
248
+ /**
249
+ * @see {@link ListStreamUrlsCommand}
250
+ * @param args - command input.
251
+ * @param paginationConfig - optional pagination config.
252
+ * @returns AsyncIterable of {@link ListStreamUrlsCommandOutput}.
253
+ */
254
+ paginateListStreamUrls(args?: ListStreamUrlsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStreamUrlsCommandOutput>;
212
255
  /**
213
256
  * @see {@link GetApplicationCommand}
214
257
  * @param args - command input.
@@ -12,6 +12,7 @@ import type { CreateApplicationCommandInput, CreateApplicationCommandOutput } fr
12
12
  import type { CreateStreamGroupCommandInput, CreateStreamGroupCommandOutput } from "./commands/CreateStreamGroupCommand";
13
13
  import type { CreateStreamSessionAdminShellCommandInput, CreateStreamSessionAdminShellCommandOutput } from "./commands/CreateStreamSessionAdminShellCommand";
14
14
  import type { CreateStreamSessionConnectionCommandInput, CreateStreamSessionConnectionCommandOutput } from "./commands/CreateStreamSessionConnectionCommand";
15
+ import type { CreateStreamUrlCommandInput, CreateStreamUrlCommandOutput } from "./commands/CreateStreamUrlCommand";
15
16
  import type { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
16
17
  import type { DeleteStreamGroupCommandInput, DeleteStreamGroupCommandOutput } from "./commands/DeleteStreamGroupCommand";
17
18
  import type { DisassociateApplicationsCommandInput, DisassociateApplicationsCommandOutput } from "./commands/DisassociateApplicationsCommand";
@@ -19,12 +20,16 @@ import type { ExportStreamSessionFilesCommandInput, ExportStreamSessionFilesComm
19
20
  import type { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
21
  import type { GetStreamGroupCommandInput, GetStreamGroupCommandOutput } from "./commands/GetStreamGroupCommand";
21
22
  import type { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "./commands/GetStreamSessionCommand";
23
+ import type { GetStreamUrlCommandInput, GetStreamUrlCommandOutput } from "./commands/GetStreamUrlCommand";
22
24
  import type { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
25
+ import type { ListApplicationShaderCachesCommandInput, ListApplicationShaderCachesCommandOutput } from "./commands/ListApplicationShaderCachesCommand";
23
26
  import type { ListStreamGroupsCommandInput, ListStreamGroupsCommandOutput } from "./commands/ListStreamGroupsCommand";
24
27
  import type { ListStreamSessionsByAccountCommandInput, ListStreamSessionsByAccountCommandOutput } from "./commands/ListStreamSessionsByAccountCommand";
25
28
  import type { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "./commands/ListStreamSessionsCommand";
29
+ import type { ListStreamUrlsCommandInput, ListStreamUrlsCommandOutput } from "./commands/ListStreamUrlsCommand";
26
30
  import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
31
  import type { RemoveStreamGroupLocationsCommandInput, RemoveStreamGroupLocationsCommandOutput } from "./commands/RemoveStreamGroupLocationsCommand";
32
+ import type { RevokeStreamUrlCommandInput, RevokeStreamUrlCommandOutput } from "./commands/RevokeStreamUrlCommand";
28
33
  import type { StartStreamSessionCommandInput, StartStreamSessionCommandOutput } from "./commands/StartStreamSessionCommand";
29
34
  import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
30
35
  import type { TerminateStreamSessionCommandInput, TerminateStreamSessionCommandOutput } from "./commands/TerminateStreamSessionCommand";
@@ -37,11 +42,11 @@ export { __Client };
37
42
  /**
38
43
  * @public
39
44
  */
40
- export type ServiceInputTypes = AddStreamGroupLocationsCommandInput | AssociateApplicationsCommandInput | CreateApplicationCommandInput | CreateStreamGroupCommandInput | CreateStreamSessionAdminShellCommandInput | CreateStreamSessionConnectionCommandInput | DeleteApplicationCommandInput | DeleteStreamGroupCommandInput | DisassociateApplicationsCommandInput | ExportStreamSessionFilesCommandInput | GetApplicationCommandInput | GetStreamGroupCommandInput | GetStreamSessionCommandInput | ListApplicationsCommandInput | ListStreamGroupsCommandInput | ListStreamSessionsByAccountCommandInput | ListStreamSessionsCommandInput | ListTagsForResourceCommandInput | RemoveStreamGroupLocationsCommandInput | StartStreamSessionCommandInput | TagResourceCommandInput | TerminateStreamSessionCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateStreamGroupCommandInput;
45
+ export type ServiceInputTypes = AddStreamGroupLocationsCommandInput | AssociateApplicationsCommandInput | CreateApplicationCommandInput | CreateStreamGroupCommandInput | CreateStreamSessionAdminShellCommandInput | CreateStreamSessionConnectionCommandInput | CreateStreamUrlCommandInput | DeleteApplicationCommandInput | DeleteStreamGroupCommandInput | DisassociateApplicationsCommandInput | ExportStreamSessionFilesCommandInput | GetApplicationCommandInput | GetStreamGroupCommandInput | GetStreamSessionCommandInput | GetStreamUrlCommandInput | ListApplicationShaderCachesCommandInput | ListApplicationsCommandInput | ListStreamGroupsCommandInput | ListStreamSessionsByAccountCommandInput | ListStreamSessionsCommandInput | ListStreamUrlsCommandInput | ListTagsForResourceCommandInput | RemoveStreamGroupLocationsCommandInput | RevokeStreamUrlCommandInput | StartStreamSessionCommandInput | TagResourceCommandInput | TerminateStreamSessionCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateStreamGroupCommandInput;
41
46
  /**
42
47
  * @public
43
48
  */
44
- export type ServiceOutputTypes = AddStreamGroupLocationsCommandOutput | AssociateApplicationsCommandOutput | CreateApplicationCommandOutput | CreateStreamGroupCommandOutput | CreateStreamSessionAdminShellCommandOutput | CreateStreamSessionConnectionCommandOutput | DeleteApplicationCommandOutput | DeleteStreamGroupCommandOutput | DisassociateApplicationsCommandOutput | ExportStreamSessionFilesCommandOutput | GetApplicationCommandOutput | GetStreamGroupCommandOutput | GetStreamSessionCommandOutput | ListApplicationsCommandOutput | ListStreamGroupsCommandOutput | ListStreamSessionsByAccountCommandOutput | ListStreamSessionsCommandOutput | ListTagsForResourceCommandOutput | RemoveStreamGroupLocationsCommandOutput | StartStreamSessionCommandOutput | TagResourceCommandOutput | TerminateStreamSessionCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateStreamGroupCommandOutput;
49
+ export type ServiceOutputTypes = AddStreamGroupLocationsCommandOutput | AssociateApplicationsCommandOutput | CreateApplicationCommandOutput | CreateStreamGroupCommandOutput | CreateStreamSessionAdminShellCommandOutput | CreateStreamSessionConnectionCommandOutput | CreateStreamUrlCommandOutput | DeleteApplicationCommandOutput | DeleteStreamGroupCommandOutput | DisassociateApplicationsCommandOutput | ExportStreamSessionFilesCommandOutput | GetApplicationCommandOutput | GetStreamGroupCommandOutput | GetStreamSessionCommandOutput | GetStreamUrlCommandOutput | ListApplicationShaderCachesCommandOutput | ListApplicationsCommandOutput | ListStreamGroupsCommandOutput | ListStreamSessionsByAccountCommandOutput | ListStreamSessionsCommandOutput | ListStreamUrlsCommandOutput | ListTagsForResourceCommandOutput | RemoveStreamGroupLocationsCommandOutput | RevokeStreamUrlCommandOutput | StartStreamSessionCommandOutput | TagResourceCommandOutput | TerminateStreamSessionCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateStreamGroupCommandOutput;
45
50
  /**
46
51
  * @public
47
52
  */
@@ -0,0 +1,144 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { CreateStreamUrlInput, CreateStreamUrlOutput } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link CreateStreamUrlCommand}.
11
+ */
12
+ export interface CreateStreamUrlCommandInput extends CreateStreamUrlInput {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link CreateStreamUrlCommand}.
18
+ */
19
+ export interface CreateStreamUrlCommandOutput extends CreateStreamUrlOutput, __MetadataBearer {
20
+ }
21
+ declare const CreateStreamUrlCommand_base: {
22
+ new (input: CreateStreamUrlCommandInput): import("@smithy/core/client").CommandImpl<CreateStreamUrlCommandInput, CreateStreamUrlCommandOutput, import("..").GameLiftStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateStreamUrlCommandInput): import("@smithy/core/client").CommandImpl<CreateStreamUrlCommandInput, CreateStreamUrlCommandOutput, import("..").GameLiftStreamsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Creates a stream URL that grants temporary access to a stream session in a web browser without requiring an Amazon Web Services account or client integration.</p> <p>You can use the stream URL to start a stream session up to the number of times set by <code>UsageLimit</code>, until it expires after <code>UrlExpiresAfterMinutes</code>. Each successful use starts a new stream session.</p> <p>To make the request idempotent, provide a <code>ClientToken</code>.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { GameLiftStreamsClient, CreateStreamUrlCommand } from "@aws-sdk/client-gameliftstreams"; // ES Modules import
32
+ * // const { GameLiftStreamsClient, CreateStreamUrlCommand } = require("@aws-sdk/client-gameliftstreams"); // CommonJS import
33
+ * // import type { GameLiftStreamsClientConfig } from "@aws-sdk/client-gameliftstreams";
34
+ * const config = {}; // type is GameLiftStreamsClientConfig
35
+ * const client = new GameLiftStreamsClient(config);
36
+ * const input = { // CreateStreamUrlInput
37
+ * Identifier: "STRING_VALUE", // required
38
+ * ApplicationIdentifier: "STRING_VALUE", // required
39
+ * Protocol: "WebRTC", // required
40
+ * UrlExpiresAfterMinutes: Number("int"), // required
41
+ * UsageLimit: Number("int"),
42
+ * Description: "STRING_VALUE",
43
+ * Locations: [ // LocationList // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * SessionLengthSeconds: Number("int"),
47
+ * AdditionalLaunchArgs: [ // GameLaunchArgList
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * AdditionalEnvironmentVariables: { // EnvironmentVariables
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * RoleArn: "STRING_VALUE",
54
+ * DisplayConfiguration: { // DisplayConfiguration
55
+ * Resolution: { // Resolution
56
+ * Width: Number("int"), // required
57
+ * Height: Number("int"), // required
58
+ * },
59
+ * },
60
+ * ClientToken: "STRING_VALUE",
61
+ * };
62
+ * const command = new CreateStreamUrlCommand(input);
63
+ * const response = await client.send(command);
64
+ * // { // CreateStreamUrlOutput
65
+ * // Arn: "STRING_VALUE", // required
66
+ * // StreamUrlId: "STRING_VALUE",
67
+ * // StreamUrl: "STRING_VALUE",
68
+ * // Status: "ACTIVE" || "EXPIRED" || "REVOKED" || "LIMIT_REACHED",
69
+ * // StatusReason: "userRevoked" || "revokedAndTerminatingSessions" || "revokedAndSessionsTerminated" || "streamGroupDeleted" || "applicationDeleted",
70
+ * // ExpiresAt: new Date("TIMESTAMP"),
71
+ * // CreatedAt: new Date("TIMESTAMP"),
72
+ * // UsageLimit: Number("int"),
73
+ * // RemainingUses: Number("int"),
74
+ * // StreamGroupArn: "STRING_VALUE",
75
+ * // ApplicationArn: "STRING_VALUE",
76
+ * // Protocol: "WebRTC",
77
+ * // Locations: [ // LocationList
78
+ * // "STRING_VALUE",
79
+ * // ],
80
+ * // SessionLengthSeconds: Number("int"),
81
+ * // Description: "STRING_VALUE",
82
+ * // AdditionalLaunchArgs: [ // GameLaunchArgList
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // AdditionalEnvironmentVariables: { // EnvironmentVariables
86
+ * // "<keys>": "STRING_VALUE",
87
+ * // },
88
+ * // RoleArn: "STRING_VALUE",
89
+ * // DisplayConfiguration: { // DisplayConfiguration
90
+ * // Resolution: { // Resolution
91
+ * // Width: Number("int"), // required
92
+ * // Height: Number("int"), // required
93
+ * // },
94
+ * // },
95
+ * // };
96
+ *
97
+ * ```
98
+ *
99
+ * @param CreateStreamUrlCommandInput - {@link CreateStreamUrlCommandInput}
100
+ * @returns {@link CreateStreamUrlCommandOutput}
101
+ * @see {@link CreateStreamUrlCommandInput} for command's `input` shape.
102
+ * @see {@link CreateStreamUrlCommandOutput} for command's `response` shape.
103
+ * @see {@link GameLiftStreamsClientResolvedConfig | config} for GameLiftStreamsClient's `config` shape.
104
+ *
105
+ * @throws {@link AccessDeniedException} (client fault)
106
+ * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the permissions before you try again.</p>
107
+ *
108
+ * @throws {@link ConflictException} (client fault)
109
+ * <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>
110
+ *
111
+ * @throws {@link InternalServerException} (server fault)
112
+ * <p>The service encountered an internal error and is unable to complete the request.</p>
113
+ *
114
+ * @throws {@link ResourceNotFoundException} (client fault)
115
+ * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
116
+ *
117
+ * @throws {@link ServiceQuotaExceededException} (client fault)
118
+ * <p>The request would cause the resource to exceed an allowed service quota. Resolve the issue before you try again.</p>
119
+ *
120
+ * @throws {@link ThrottlingException} (client fault)
121
+ * <p>The request was denied due to request throttling. Retry the request after the suggested wait time.</p>
122
+ *
123
+ * @throws {@link ValidationException} (client fault)
124
+ * <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>
125
+ *
126
+ * @throws {@link GameLiftStreamsServiceException}
127
+ * <p>Base exception class for all service exceptions from GameLiftStreams service.</p>
128
+ *
129
+ *
130
+ * @public
131
+ */
132
+ export declare class CreateStreamUrlCommand extends CreateStreamUrlCommand_base {
133
+ /** @internal type navigation helper, not in runtime. */
134
+ protected static __types: {
135
+ api: {
136
+ input: CreateStreamUrlInput;
137
+ output: CreateStreamUrlOutput;
138
+ };
139
+ sdk: {
140
+ input: CreateStreamUrlCommandInput;
141
+ output: CreateStreamUrlCommandOutput;
142
+ };
143
+ };
144
+ }