@aws-sdk/client-gameliftstreams 3.762.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 (223) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +404 -0
  3. package/dist-cjs/GameLiftStreams.js +59 -0
  4. package/dist-cjs/GameLiftStreamsClient.js +51 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AddStreamGroupLocationsCommand.js +26 -0
  8. package/dist-cjs/commands/AssociateApplicationsCommand.js +26 -0
  9. package/dist-cjs/commands/CreateApplicationCommand.js +26 -0
  10. package/dist-cjs/commands/CreateStreamGroupCommand.js +26 -0
  11. package/dist-cjs/commands/CreateStreamSessionConnectionCommand.js +27 -0
  12. package/dist-cjs/commands/DeleteApplicationCommand.js +26 -0
  13. package/dist-cjs/commands/DeleteStreamGroupCommand.js +26 -0
  14. package/dist-cjs/commands/DisassociateApplicationsCommand.js +26 -0
  15. package/dist-cjs/commands/ExportStreamSessionFilesCommand.js +26 -0
  16. package/dist-cjs/commands/GetApplicationCommand.js +26 -0
  17. package/dist-cjs/commands/GetStreamGroupCommand.js +26 -0
  18. package/dist-cjs/commands/GetStreamSessionCommand.js +27 -0
  19. package/dist-cjs/commands/ListApplicationsCommand.js +26 -0
  20. package/dist-cjs/commands/ListStreamGroupsCommand.js +26 -0
  21. package/dist-cjs/commands/ListStreamSessionsByAccountCommand.js +26 -0
  22. package/dist-cjs/commands/ListStreamSessionsCommand.js +26 -0
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  24. package/dist-cjs/commands/RemoveStreamGroupLocationsCommand.js +26 -0
  25. package/dist-cjs/commands/StartStreamSessionCommand.js +27 -0
  26. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  27. package/dist-cjs/commands/TerminateStreamSessionCommand.js +26 -0
  28. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  29. package/dist-cjs/commands/UpdateApplicationCommand.js +26 -0
  30. package/dist-cjs/commands/UpdateStreamGroupCommand.js +26 -0
  31. package/dist-cjs/commands/index.js +27 -0
  32. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  33. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  34. package/dist-cjs/endpoint/ruleset.js +7 -0
  35. package/dist-cjs/extensionConfiguration.js +2 -0
  36. package/dist-cjs/index.js +12 -0
  37. package/dist-cjs/models/GameLiftStreamsServiceException.js +12 -0
  38. package/dist-cjs/models/index.js +4 -0
  39. package/dist-cjs/models/models_0.js +211 -0
  40. package/dist-cjs/pagination/Interfaces.js +2 -0
  41. package/dist-cjs/pagination/ListApplicationsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListStreamGroupsPaginator.js +7 -0
  43. package/dist-cjs/pagination/ListStreamSessionsByAccountPaginator.js +7 -0
  44. package/dist-cjs/pagination/ListStreamSessionsPaginator.js +7 -0
  45. package/dist-cjs/pagination/index.js +8 -0
  46. package/dist-cjs/protocols/Aws_restJson1.js +1005 -0
  47. package/dist-cjs/runtimeConfig.browser.js +39 -0
  48. package/dist-cjs/runtimeConfig.js +52 -0
  49. package/dist-cjs/runtimeConfig.native.js +15 -0
  50. package/dist-cjs/runtimeConfig.shared.js +34 -0
  51. package/dist-cjs/runtimeExtensions.js +25 -0
  52. package/dist-cjs/waiters/index.js +8 -0
  53. package/dist-cjs/waiters/waitForApplicationDeleted.js +30 -0
  54. package/dist-cjs/waiters/waitForApplicationReady.js +45 -0
  55. package/dist-cjs/waiters/waitForStreamGroupActive.js +63 -0
  56. package/dist-cjs/waiters/waitForStreamGroupDeleted.js +30 -0
  57. package/dist-cjs/waiters/waitForStreamSessionActive.js +45 -0
  58. package/dist-es/GameLiftStreams.js +55 -0
  59. package/dist-es/GameLiftStreamsClient.js +47 -0
  60. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  61. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  62. package/dist-es/commands/AddStreamGroupLocationsCommand.js +22 -0
  63. package/dist-es/commands/AssociateApplicationsCommand.js +22 -0
  64. package/dist-es/commands/CreateApplicationCommand.js +22 -0
  65. package/dist-es/commands/CreateStreamGroupCommand.js +22 -0
  66. package/dist-es/commands/CreateStreamSessionConnectionCommand.js +23 -0
  67. package/dist-es/commands/DeleteApplicationCommand.js +22 -0
  68. package/dist-es/commands/DeleteStreamGroupCommand.js +22 -0
  69. package/dist-es/commands/DisassociateApplicationsCommand.js +22 -0
  70. package/dist-es/commands/ExportStreamSessionFilesCommand.js +22 -0
  71. package/dist-es/commands/GetApplicationCommand.js +22 -0
  72. package/dist-es/commands/GetStreamGroupCommand.js +22 -0
  73. package/dist-es/commands/GetStreamSessionCommand.js +23 -0
  74. package/dist-es/commands/ListApplicationsCommand.js +22 -0
  75. package/dist-es/commands/ListStreamGroupsCommand.js +22 -0
  76. package/dist-es/commands/ListStreamSessionsByAccountCommand.js +22 -0
  77. package/dist-es/commands/ListStreamSessionsCommand.js +22 -0
  78. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  79. package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +22 -0
  80. package/dist-es/commands/StartStreamSessionCommand.js +23 -0
  81. package/dist-es/commands/TagResourceCommand.js +22 -0
  82. package/dist-es/commands/TerminateStreamSessionCommand.js +22 -0
  83. package/dist-es/commands/UntagResourceCommand.js +22 -0
  84. package/dist-es/commands/UpdateApplicationCommand.js +22 -0
  85. package/dist-es/commands/UpdateStreamGroupCommand.js +22 -0
  86. package/dist-es/commands/index.js +24 -0
  87. package/dist-es/endpoint/EndpointParameters.js +12 -0
  88. package/dist-es/endpoint/endpointResolver.js +14 -0
  89. package/dist-es/endpoint/ruleset.js +4 -0
  90. package/dist-es/extensionConfiguration.js +1 -0
  91. package/dist-es/index.js +7 -0
  92. package/dist-es/models/GameLiftStreamsServiceException.js +8 -0
  93. package/dist-es/models/index.js +1 -0
  94. package/dist-es/models/models_0.js +196 -0
  95. package/dist-es/pagination/Interfaces.js +1 -0
  96. package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
  97. package/dist-es/pagination/ListStreamGroupsPaginator.js +4 -0
  98. package/dist-es/pagination/ListStreamSessionsByAccountPaginator.js +4 -0
  99. package/dist-es/pagination/ListStreamSessionsPaginator.js +4 -0
  100. package/dist-es/pagination/index.js +5 -0
  101. package/dist-es/protocols/Aws_restJson1.js +954 -0
  102. package/dist-es/runtimeConfig.browser.js +34 -0
  103. package/dist-es/runtimeConfig.js +47 -0
  104. package/dist-es/runtimeConfig.native.js +11 -0
  105. package/dist-es/runtimeConfig.shared.js +30 -0
  106. package/dist-es/runtimeExtensions.js +21 -0
  107. package/dist-es/waiters/index.js +5 -0
  108. package/dist-es/waiters/waitForApplicationDeleted.js +25 -0
  109. package/dist-es/waiters/waitForApplicationReady.js +40 -0
  110. package/dist-es/waiters/waitForStreamGroupActive.js +58 -0
  111. package/dist-es/waiters/waitForStreamGroupDeleted.js +25 -0
  112. package/dist-es/waiters/waitForStreamSessionActive.js +40 -0
  113. package/dist-types/GameLiftStreams.d.ts +187 -0
  114. package/dist-types/GameLiftStreamsClient.d.ts +217 -0
  115. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  116. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  117. package/dist-types/commands/AddStreamGroupLocationsCommand.d.ts +116 -0
  118. package/dist-types/commands/AssociateApplicationsCommand.d.ts +99 -0
  119. package/dist-types/commands/CreateApplicationCommand.d.ts +146 -0
  120. package/dist-types/commands/CreateStreamGroupCommand.d.ts +158 -0
  121. package/dist-types/commands/CreateStreamSessionConnectionCommand.d.ts +114 -0
  122. package/dist-types/commands/DeleteApplicationCommand.d.ts +116 -0
  123. package/dist-types/commands/DeleteStreamGroupCommand.d.ts +93 -0
  124. package/dist-types/commands/DisassociateApplicationsCommand.d.ts +100 -0
  125. package/dist-types/commands/ExportStreamSessionFilesCommand.d.ts +116 -0
  126. package/dist-types/commands/GetApplicationCommand.d.ts +116 -0
  127. package/dist-types/commands/GetStreamGroupCommand.d.ts +116 -0
  128. package/dist-types/commands/GetStreamSessionCommand.d.ts +119 -0
  129. package/dist-types/commands/ListApplicationsCommand.d.ts +103 -0
  130. package/dist-types/commands/ListStreamGroupsCommand.d.ts +104 -0
  131. package/dist-types/commands/ListStreamSessionsByAccountCommand.d.ts +109 -0
  132. package/dist-types/commands/ListStreamSessionsCommand.d.ts +113 -0
  133. package/dist-types/commands/ListTagsForResourceCommand.d.ts +100 -0
  134. package/dist-types/commands/RemoveStreamGroupLocationsCommand.d.ts +95 -0
  135. package/dist-types/commands/StartStreamSessionCommand.d.ts +156 -0
  136. package/dist-types/commands/TagResourceCommand.d.ts +107 -0
  137. package/dist-types/commands/TerminateStreamSessionCommand.d.ts +91 -0
  138. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  139. package/dist-types/commands/UpdateApplicationCommand.d.ts +122 -0
  140. package/dist-types/commands/UpdateStreamGroupCommand.d.ts +154 -0
  141. package/dist-types/commands/index.d.ts +24 -0
  142. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  143. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  144. package/dist-types/endpoint/ruleset.d.ts +2 -0
  145. package/dist-types/extensionConfiguration.d.ts +9 -0
  146. package/dist-types/index.d.ts +21 -0
  147. package/dist-types/models/GameLiftStreamsServiceException.d.ts +14 -0
  148. package/dist-types/models/index.d.ts +1 -0
  149. package/dist-types/models/models_0.d.ts +3555 -0
  150. package/dist-types/pagination/Interfaces.d.ts +8 -0
  151. package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
  152. package/dist-types/pagination/ListStreamGroupsPaginator.d.ts +7 -0
  153. package/dist-types/pagination/ListStreamSessionsByAccountPaginator.d.ts +7 -0
  154. package/dist-types/pagination/ListStreamSessionsPaginator.d.ts +7 -0
  155. package/dist-types/pagination/index.d.ts +5 -0
  156. package/dist-types/protocols/Aws_restJson1.d.ts +218 -0
  157. package/dist-types/runtimeConfig.browser.d.ts +49 -0
  158. package/dist-types/runtimeConfig.d.ts +49 -0
  159. package/dist-types/runtimeConfig.native.d.ts +48 -0
  160. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  161. package/dist-types/runtimeExtensions.d.ts +17 -0
  162. package/dist-types/ts3.4/GameLiftStreams.d.ts +418 -0
  163. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +264 -0
  164. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  165. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  166. package/dist-types/ts3.4/commands/AddStreamGroupLocationsCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/AssociateApplicationsCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/CreateStreamGroupCommand.d.ts +50 -0
  170. package/dist-types/ts3.4/commands/CreateStreamSessionConnectionCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +45 -0
  172. package/dist-types/ts3.4/commands/DeleteStreamGroupCommand.d.ts +45 -0
  173. package/dist-types/ts3.4/commands/DisassociateApplicationsCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/ExportStreamSessionFilesCommand.d.ts +51 -0
  175. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +47 -0
  176. package/dist-types/ts3.4/commands/GetStreamGroupCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +50 -0
  178. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
  179. package/dist-types/ts3.4/commands/ListStreamGroupsCommand.d.ts +50 -0
  180. package/dist-types/ts3.4/commands/ListStreamSessionsByAccountCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/RemoveStreamGroupLocationsCommand.d.ts +47 -0
  184. package/dist-types/ts3.4/commands/StartStreamSessionCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/TerminateStreamSessionCommand.d.ts +46 -0
  187. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  188. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +50 -0
  189. package/dist-types/ts3.4/commands/UpdateStreamGroupCommand.d.ts +50 -0
  190. package/dist-types/ts3.4/commands/index.d.ts +24 -0
  191. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  192. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  193. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  194. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  195. package/dist-types/ts3.4/index.d.ts +10 -0
  196. package/dist-types/ts3.4/models/GameLiftStreamsServiceException.d.ts +9 -0
  197. package/dist-types/ts3.4/models/index.d.ts +1 -0
  198. package/dist-types/ts3.4/models/models_0.d.ts +518 -0
  199. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  200. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListStreamGroupsPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListStreamSessionsByAccountPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  205. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -0
  206. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  207. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  208. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  209. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  210. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  211. package/dist-types/ts3.4/waiters/index.d.ts +5 -0
  212. package/dist-types/ts3.4/waiters/waitForApplicationDeleted.d.ts +11 -0
  213. package/dist-types/ts3.4/waiters/waitForApplicationReady.d.ts +11 -0
  214. package/dist-types/ts3.4/waiters/waitForStreamGroupActive.d.ts +11 -0
  215. package/dist-types/ts3.4/waiters/waitForStreamGroupDeleted.d.ts +11 -0
  216. package/dist-types/ts3.4/waiters/waitForStreamSessionActive.d.ts +11 -0
  217. package/dist-types/waiters/index.d.ts +5 -0
  218. package/dist-types/waiters/waitForApplicationDeleted.d.ts +14 -0
  219. package/dist-types/waiters/waitForApplicationReady.d.ts +14 -0
  220. package/dist-types/waiters/waitForStreamGroupActive.d.ts +14 -0
  221. package/dist-types/waiters/waitForStreamGroupDeleted.d.ts +14 -0
  222. package/dist-types/waiters/waitForStreamSessionActive.d.ts +14 -0
  223. package/package.json +102 -0
@@ -0,0 +1,217 @@
1
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
+ import { AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput } from "./commands/AddStreamGroupLocationsCommand";
11
+ import { AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput } from "./commands/AssociateApplicationsCommand";
12
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
13
+ import { CreateStreamGroupCommandInput, CreateStreamGroupCommandOutput } from "./commands/CreateStreamGroupCommand";
14
+ import { CreateStreamSessionConnectionCommandInput, CreateStreamSessionConnectionCommandOutput } from "./commands/CreateStreamSessionConnectionCommand";
15
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
16
+ import { DeleteStreamGroupCommandInput, DeleteStreamGroupCommandOutput } from "./commands/DeleteStreamGroupCommand";
17
+ import { DisassociateApplicationsCommandInput, DisassociateApplicationsCommandOutput } from "./commands/DisassociateApplicationsCommand";
18
+ import { ExportStreamSessionFilesCommandInput, ExportStreamSessionFilesCommandOutput } from "./commands/ExportStreamSessionFilesCommand";
19
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
+ import { GetStreamGroupCommandInput, GetStreamGroupCommandOutput } from "./commands/GetStreamGroupCommand";
21
+ import { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "./commands/GetStreamSessionCommand";
22
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
23
+ import { ListStreamGroupsCommandInput, ListStreamGroupsCommandOutput } from "./commands/ListStreamGroupsCommand";
24
+ import { ListStreamSessionsByAccountCommandInput, ListStreamSessionsByAccountCommandOutput } from "./commands/ListStreamSessionsByAccountCommand";
25
+ import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "./commands/ListStreamSessionsCommand";
26
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
+ import { RemoveStreamGroupLocationsCommandInput, RemoveStreamGroupLocationsCommandOutput } from "./commands/RemoveStreamGroupLocationsCommand";
28
+ import { StartStreamSessionCommandInput, StartStreamSessionCommandOutput } from "./commands/StartStreamSessionCommand";
29
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
30
+ import { TerminateStreamSessionCommandInput, TerminateStreamSessionCommandOutput } from "./commands/TerminateStreamSessionCommand";
31
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
+ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
33
+ import { UpdateStreamGroupCommandInput, UpdateStreamGroupCommandOutput } from "./commands/UpdateStreamGroupCommand";
34
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
35
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
36
+ export { __Client };
37
+ /**
38
+ * @public
39
+ */
40
+ export type ServiceInputTypes = AddStreamGroupLocationsCommandInput | AssociateApplicationsCommandInput | CreateApplicationCommandInput | CreateStreamGroupCommandInput | CreateStreamSessionConnectionCommandInput | DeleteApplicationCommandInput | DeleteStreamGroupCommandInput | DisassociateApplicationsCommandInput | ExportStreamSessionFilesCommandInput | GetApplicationCommandInput | GetStreamGroupCommandInput | GetStreamSessionCommandInput | ListApplicationsCommandInput | ListStreamGroupsCommandInput | ListStreamSessionsByAccountCommandInput | ListStreamSessionsCommandInput | ListTagsForResourceCommandInput | RemoveStreamGroupLocationsCommandInput | StartStreamSessionCommandInput | TagResourceCommandInput | TerminateStreamSessionCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateStreamGroupCommandInput;
41
+ /**
42
+ * @public
43
+ */
44
+ export type ServiceOutputTypes = AddStreamGroupLocationsCommandOutput | AssociateApplicationsCommandOutput | CreateApplicationCommandOutput | CreateStreamGroupCommandOutput | CreateStreamSessionConnectionCommandOutput | DeleteApplicationCommandOutput | DeleteStreamGroupCommandOutput | DisassociateApplicationsCommandOutput | ExportStreamSessionFilesCommandOutput | GetApplicationCommandOutput | GetStreamGroupCommandOutput | GetStreamSessionCommandOutput | ListApplicationsCommandOutput | ListStreamGroupsCommandOutput | ListStreamSessionsByAccountCommandOutput | ListStreamSessionsCommandOutput | ListTagsForResourceCommandOutput | RemoveStreamGroupLocationsCommandOutput | StartStreamSessionCommandOutput | TagResourceCommandOutput | TerminateStreamSessionCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateStreamGroupCommandOutput;
45
+ /**
46
+ * @public
47
+ */
48
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
49
+ /**
50
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
51
+ */
52
+ requestHandler?: __HttpHandlerUserInput;
53
+ /**
54
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
55
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
56
+ * @internal
57
+ */
58
+ sha256?: __ChecksumConstructor | __HashConstructor;
59
+ /**
60
+ * The function that will be used to convert strings into HTTP endpoints.
61
+ * @internal
62
+ */
63
+ urlParser?: __UrlParser;
64
+ /**
65
+ * A function that can calculate the length of a request body.
66
+ * @internal
67
+ */
68
+ bodyLengthChecker?: __BodyLengthCalculator;
69
+ /**
70
+ * A function that converts a stream into an array of bytes.
71
+ * @internal
72
+ */
73
+ streamCollector?: __StreamCollector;
74
+ /**
75
+ * The function that will be used to convert a base64-encoded string to a byte array.
76
+ * @internal
77
+ */
78
+ base64Decoder?: __Decoder;
79
+ /**
80
+ * The function that will be used to convert binary data to a base64-encoded string.
81
+ * @internal
82
+ */
83
+ base64Encoder?: __Encoder;
84
+ /**
85
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
86
+ * @internal
87
+ */
88
+ utf8Decoder?: __Decoder;
89
+ /**
90
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
91
+ * @internal
92
+ */
93
+ utf8Encoder?: __Encoder;
94
+ /**
95
+ * The runtime environment.
96
+ * @internal
97
+ */
98
+ runtime?: string;
99
+ /**
100
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
101
+ * trait of an operation.
102
+ */
103
+ disableHostPrefix?: boolean;
104
+ /**
105
+ * Unique service identifier.
106
+ * @internal
107
+ */
108
+ serviceId?: string;
109
+ /**
110
+ * Enables IPv6/IPv4 dualstack endpoint.
111
+ */
112
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
113
+ /**
114
+ * Enables FIPS compatible endpoints.
115
+ */
116
+ useFipsEndpoint?: boolean | __Provider<boolean>;
117
+ /**
118
+ * The AWS region to which this client will send requests
119
+ */
120
+ region?: string | __Provider<string>;
121
+ /**
122
+ * Setting a client profile is similar to setting a value for the
123
+ * AWS_PROFILE environment variable. Setting a profile on a client
124
+ * in code only affects the single client instance, unlike AWS_PROFILE.
125
+ *
126
+ * When set, and only for environments where an AWS configuration
127
+ * file exists, fields configurable by this file will be retrieved
128
+ * from the specified profile within that file.
129
+ * Conflicting code configuration and environment variables will
130
+ * still have higher priority.
131
+ *
132
+ * For client credential resolution that involves checking the AWS
133
+ * configuration file, the client's profile (this value) will be
134
+ * used unless a different profile is set in the credential
135
+ * provider options.
136
+ *
137
+ */
138
+ profile?: string;
139
+ /**
140
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
141
+ * @internal
142
+ */
143
+ defaultUserAgentProvider?: Provider<__UserAgent>;
144
+ /**
145
+ * Default credentials provider; Not available in browser runtime.
146
+ * @deprecated
147
+ * @internal
148
+ */
149
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
150
+ /**
151
+ * Value for how many times a request will be made at most in case of retry.
152
+ */
153
+ maxAttempts?: number | __Provider<number>;
154
+ /**
155
+ * Specifies which retry algorithm to use.
156
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
157
+ *
158
+ */
159
+ retryMode?: string | __Provider<string>;
160
+ /**
161
+ * Optional logger for logging debug/info/warn/error.
162
+ */
163
+ logger?: __Logger;
164
+ /**
165
+ * Optional extensions
166
+ */
167
+ extensions?: RuntimeExtension[];
168
+ /**
169
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
170
+ */
171
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
172
+ }
173
+ /**
174
+ * @public
175
+ */
176
+ export type GameLiftStreamsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
177
+ /**
178
+ * @public
179
+ *
180
+ * The configuration interface of GameLiftStreamsClient class constructor that set the region, credentials and other options.
181
+ */
182
+ export interface GameLiftStreamsClientConfig extends GameLiftStreamsClientConfigType {
183
+ }
184
+ /**
185
+ * @public
186
+ */
187
+ export type GameLiftStreamsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
188
+ /**
189
+ * @public
190
+ *
191
+ * The resolved configuration interface of GameLiftStreamsClient class. This is resolved and normalized from the {@link GameLiftStreamsClientConfig | constructor configuration interface}.
192
+ */
193
+ export interface GameLiftStreamsClientResolvedConfig extends GameLiftStreamsClientResolvedConfigType {
194
+ }
195
+ /**
196
+ * <fullname>Amazon GameLift Streams</fullname>
197
+ * <p>Amazon GameLift Streams provides a global cloud solution for content streaming experiences. Use Amazon GameLift Streams
198
+ * tools to upload and configure content for streaming, deploy and scale computing resources
199
+ * to host streams, and manage stream session placement to meet customer demand.</p>
200
+ * <p>This Reference Guide describes the Amazon GameLift Streams service API. You can use the API through the
201
+ * Amazon Web Services SDK, the Command Line Interface (AWS CLI), or by making direct REST calls through HTTPS.</p>
202
+ * <p>See the <i>Amazon GameLift Streams Developer Guide</i> for more information on how Amazon GameLift Streams works and how to work with it.</p>
203
+ * @public
204
+ */
205
+ export declare class GameLiftStreamsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, GameLiftStreamsClientResolvedConfig> {
206
+ /**
207
+ * The resolved configuration of GameLiftStreamsClient class. This is resolved and normalized from the {@link GameLiftStreamsClientConfig | constructor configuration interface}.
208
+ */
209
+ readonly config: GameLiftStreamsClientResolvedConfig;
210
+ constructor(...[configuration]: __CheckOptionalClientConfig<GameLiftStreamsClientConfig>);
211
+ /**
212
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
213
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
214
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
215
+ */
216
+ destroy(): void;
217
+ }
@@ -0,0 +1,29 @@
1
+ import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
+ import { GameLiftStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): GameLiftStreamsHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,61 @@
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
+ import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
3
+ import { GameLiftStreamsClientResolvedConfig } from "../GameLiftStreamsClient";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface GameLiftStreamsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
8
+ region?: string;
9
+ }
10
+ /**
11
+ * @internal
12
+ */
13
+ export interface GameLiftStreamsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<GameLiftStreamsClientResolvedConfig, HandlerExecutionContext, GameLiftStreamsHttpAuthSchemeParameters, object> {
14
+ }
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const defaultGameLiftStreamsHttpAuthSchemeParametersProvider: (config: GameLiftStreamsClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<GameLiftStreamsHttpAuthSchemeParameters>;
19
+ /**
20
+ * @internal
21
+ */
22
+ export interface GameLiftStreamsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<GameLiftStreamsHttpAuthSchemeParameters> {
23
+ }
24
+ /**
25
+ * @internal
26
+ */
27
+ export declare const defaultGameLiftStreamsHttpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider;
28
+ /**
29
+ * @internal
30
+ */
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ /**
33
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
+ * @internal
35
+ */
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ /**
38
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
39
+ * @internal
40
+ */
41
+ httpAuthSchemeProvider?: GameLiftStreamsHttpAuthSchemeProvider;
42
+ }
43
+ /**
44
+ * @internal
45
+ */
46
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
+ /**
48
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
+ * @internal
50
+ */
51
+ readonly httpAuthSchemes: HttpAuthScheme[];
52
+ /**
53
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
54
+ * @internal
55
+ */
56
+ readonly httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider;
57
+ }
58
+ /**
59
+ * @internal
60
+ */
61
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,116 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient";
4
+ import { AddStreamGroupLocationsInput, AddStreamGroupLocationsOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AddStreamGroupLocationsCommand}.
14
+ */
15
+ export interface AddStreamGroupLocationsCommandInput extends AddStreamGroupLocationsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AddStreamGroupLocationsCommand}.
21
+ */
22
+ export interface AddStreamGroupLocationsCommandOutput extends AddStreamGroupLocationsOutput, __MetadataBearer {
23
+ }
24
+ declare const AddStreamGroupLocationsCommand_base: {
25
+ new (input: AddStreamGroupLocationsCommandInput): import("@smithy/smithy-client").CommandImpl<AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: AddStreamGroupLocationsCommandInput): import("@smithy/smithy-client").CommandImpl<AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Add locations that can host stream sessions. You configure locations and their corresponding capacity for each stream group. Creating a stream group in a location that's nearest to your end users can help minimize latency and improve quality.
32
+ * </p>
33
+ * <p>
34
+ * This operation provisions stream capacity at the specified locations. By default, all locations have 1 or 2 capacity, depending on the stream class option: 2 for 'High' and 1 for 'Ultra' and 'Win2022'. This operation also copies the content files of all associated applications to an internal S3 bucket at each location. This allows Amazon GameLift Streams to host performant stream sessions.
35
+ * </p>
36
+ * @example
37
+ * Use a bare-bones client and the command you need to make an API call.
38
+ * ```javascript
39
+ * import { GameLiftStreamsClient, AddStreamGroupLocationsCommand } from "@aws-sdk/client-gameliftstreams"; // ES Modules import
40
+ * // const { GameLiftStreamsClient, AddStreamGroupLocationsCommand } = require("@aws-sdk/client-gameliftstreams"); // CommonJS import
41
+ * const client = new GameLiftStreamsClient(config);
42
+ * const input = { // AddStreamGroupLocationsInput
43
+ * Identifier: "STRING_VALUE", // required
44
+ * LocationConfigurations: [ // LocationConfigurations // required
45
+ * { // LocationConfiguration
46
+ * LocationName: "STRING_VALUE", // required
47
+ * AlwaysOnCapacity: Number("int"),
48
+ * OnDemandCapacity: Number("int"),
49
+ * },
50
+ * ],
51
+ * };
52
+ * const command = new AddStreamGroupLocationsCommand(input);
53
+ * const response = await client.send(command);
54
+ * // { // AddStreamGroupLocationsOutput
55
+ * // Identifier: "STRING_VALUE", // required
56
+ * // Locations: [ // LocationStates // required
57
+ * // { // LocationState
58
+ * // LocationName: "STRING_VALUE",
59
+ * // Status: "ACTIVATING" || "ACTIVE" || "ERROR" || "REMOVING",
60
+ * // AlwaysOnCapacity: Number("int"),
61
+ * // OnDemandCapacity: Number("int"),
62
+ * // RequestedCapacity: Number("int"),
63
+ * // AllocatedCapacity: Number("int"),
64
+ * // IdleCapacity: Number("int"),
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
69
+ * ```
70
+ *
71
+ * @param AddStreamGroupLocationsCommandInput - {@link AddStreamGroupLocationsCommandInput}
72
+ * @returns {@link AddStreamGroupLocationsCommandOutput}
73
+ * @see {@link AddStreamGroupLocationsCommandInput} for command's `input` shape.
74
+ * @see {@link AddStreamGroupLocationsCommandOutput} for command's `response` shape.
75
+ * @see {@link GameLiftStreamsClientResolvedConfig | config} for GameLiftStreamsClient's `config` shape.
76
+ *
77
+ * @throws {@link AccessDeniedException} (client fault)
78
+ * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the
79
+ * permissions before you try again.</p>
80
+ *
81
+ * @throws {@link InternalServerException} (server fault)
82
+ * <p>The service encountered an internal error and is unable to complete the request.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
86
+ *
87
+ * @throws {@link ServiceQuotaExceededException} (client fault)
88
+ * <p>The request would cause the resource to exceed an allowed service quota. Resolve the
89
+ * issue before you try again.</p>
90
+ *
91
+ * @throws {@link ThrottlingException} (client fault)
92
+ * <p>The request was denied due to request throttling. Retry the request after the
93
+ * suggested wait time.</p>
94
+ *
95
+ * @throws {@link ValidationException} (client fault)
96
+ * <p>One or more parameter values in the request fail to satisfy the specified constraints.
97
+ * Correct the invalid parameter values before retrying the request.</p>
98
+ *
99
+ * @throws {@link GameLiftStreamsServiceException}
100
+ * <p>Base exception class for all service exceptions from GameLiftStreams service.</p>
101
+ *
102
+ * @public
103
+ */
104
+ export declare class AddStreamGroupLocationsCommand extends AddStreamGroupLocationsCommand_base {
105
+ /** @internal type navigation helper, not in runtime. */
106
+ protected static __types: {
107
+ api: {
108
+ input: AddStreamGroupLocationsInput;
109
+ output: AddStreamGroupLocationsOutput;
110
+ };
111
+ sdk: {
112
+ input: AddStreamGroupLocationsCommandInput;
113
+ output: AddStreamGroupLocationsCommandOutput;
114
+ };
115
+ };
116
+ }
@@ -0,0 +1,99 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient";
4
+ import { AssociateApplicationsInput, AssociateApplicationsOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AssociateApplicationsCommand}.
14
+ */
15
+ export interface AssociateApplicationsCommandInput extends AssociateApplicationsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AssociateApplicationsCommand}.
21
+ */
22
+ export interface AssociateApplicationsCommandOutput extends AssociateApplicationsOutput, __MetadataBearer {
23
+ }
24
+ declare const AssociateApplicationsCommand_base: {
25
+ new (input: AssociateApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: AssociateApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>When you associate, or link, an application with a stream group, then Amazon GameLift Streams can launch the application using the stream group's allocated compute resources. The stream group must be in <code>ACTIVE</code> status. You can reverse this action by using <a>DisassociateApplications</a>.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { GameLiftStreamsClient, AssociateApplicationsCommand } from "@aws-sdk/client-gameliftstreams"; // ES Modules import
35
+ * // const { GameLiftStreamsClient, AssociateApplicationsCommand } = require("@aws-sdk/client-gameliftstreams"); // CommonJS import
36
+ * const client = new GameLiftStreamsClient(config);
37
+ * const input = { // AssociateApplicationsInput
38
+ * Identifier: "STRING_VALUE", // required
39
+ * ApplicationIdentifiers: [ // Identifiers // required
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * };
43
+ * const command = new AssociateApplicationsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // AssociateApplicationsOutput
46
+ * // Arn: "STRING_VALUE",
47
+ * // ApplicationArns: [ // ArnList
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // };
51
+ *
52
+ * ```
53
+ *
54
+ * @param AssociateApplicationsCommandInput - {@link AssociateApplicationsCommandInput}
55
+ * @returns {@link AssociateApplicationsCommandOutput}
56
+ * @see {@link AssociateApplicationsCommandInput} for command's `input` shape.
57
+ * @see {@link AssociateApplicationsCommandOutput} for command's `response` shape.
58
+ * @see {@link GameLiftStreamsClientResolvedConfig | config} for GameLiftStreamsClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the
62
+ * permissions before you try again.</p>
63
+ *
64
+ * @throws {@link InternalServerException} (server fault)
65
+ * <p>The service encountered an internal error and is unable to complete the request.</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
69
+ *
70
+ * @throws {@link ServiceQuotaExceededException} (client fault)
71
+ * <p>The request would cause the resource to exceed an allowed service quota. Resolve the
72
+ * issue before you try again.</p>
73
+ *
74
+ * @throws {@link ThrottlingException} (client fault)
75
+ * <p>The request was denied due to request throttling. Retry the request after the
76
+ * suggested wait time.</p>
77
+ *
78
+ * @throws {@link ValidationException} (client fault)
79
+ * <p>One or more parameter values in the request fail to satisfy the specified constraints.
80
+ * Correct the invalid parameter values before retrying the request.</p>
81
+ *
82
+ * @throws {@link GameLiftStreamsServiceException}
83
+ * <p>Base exception class for all service exceptions from GameLiftStreams service.</p>
84
+ *
85
+ * @public
86
+ */
87
+ export declare class AssociateApplicationsCommand extends AssociateApplicationsCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: AssociateApplicationsInput;
92
+ output: AssociateApplicationsOutput;
93
+ };
94
+ sdk: {
95
+ input: AssociateApplicationsCommandInput;
96
+ output: AssociateApplicationsCommandOutput;
97
+ };
98
+ };
99
+ }