@aws-sdk/client-simspaceweaver 3.220.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 (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +216 -0
  3. package/dist-cjs/SimSpaceWeaver.js +232 -0
  4. package/dist-cjs/SimSpaceWeaverClient.js +40 -0
  5. package/dist-cjs/commands/DeleteAppCommand.js +46 -0
  6. package/dist-cjs/commands/DeleteSimulationCommand.js +46 -0
  7. package/dist-cjs/commands/DescribeAppCommand.js +46 -0
  8. package/dist-cjs/commands/DescribeSimulationCommand.js +46 -0
  9. package/dist-cjs/commands/ListAppsCommand.js +46 -0
  10. package/dist-cjs/commands/ListSimulationsCommand.js +46 -0
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  12. package/dist-cjs/commands/StartAppCommand.js +46 -0
  13. package/dist-cjs/commands/StartClockCommand.js +46 -0
  14. package/dist-cjs/commands/StartSimulationCommand.js +46 -0
  15. package/dist-cjs/commands/StopAppCommand.js +46 -0
  16. package/dist-cjs/commands/StopClockCommand.js +46 -0
  17. package/dist-cjs/commands/StopSimulationCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/index.js +18 -0
  21. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  22. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  23. package/dist-cjs/endpoint/ruleset.js +312 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/SimSpaceWeaverServiceException.js +11 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +328 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListAppsPaginator.js +36 -0
  30. package/dist-cjs/pagination/ListSimulationsPaginator.js +36 -0
  31. package/dist-cjs/pagination/index.js +6 -0
  32. package/dist-cjs/protocols/Aws_restJson1.js +1384 -0
  33. package/dist-cjs/runtimeConfig.browser.js +42 -0
  34. package/dist-cjs/runtimeConfig.js +50 -0
  35. package/dist-cjs/runtimeConfig.native.js +15 -0
  36. package/dist-cjs/runtimeConfig.shared.js +18 -0
  37. package/dist-es/SimSpaceWeaver.js +228 -0
  38. package/dist-es/SimSpaceWeaverClient.js +36 -0
  39. package/dist-es/commands/DeleteAppCommand.js +42 -0
  40. package/dist-es/commands/DeleteSimulationCommand.js +42 -0
  41. package/dist-es/commands/DescribeAppCommand.js +42 -0
  42. package/dist-es/commands/DescribeSimulationCommand.js +42 -0
  43. package/dist-es/commands/ListAppsCommand.js +42 -0
  44. package/dist-es/commands/ListSimulationsCommand.js +42 -0
  45. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  46. package/dist-es/commands/StartAppCommand.js +42 -0
  47. package/dist-es/commands/StartClockCommand.js +42 -0
  48. package/dist-es/commands/StartSimulationCommand.js +42 -0
  49. package/dist-es/commands/StopAppCommand.js +42 -0
  50. package/dist-es/commands/StopClockCommand.js +42 -0
  51. package/dist-es/commands/StopSimulationCommand.js +42 -0
  52. package/dist-es/commands/TagResourceCommand.js +42 -0
  53. package/dist-es/commands/UntagResourceCommand.js +42 -0
  54. package/dist-es/commands/index.js +15 -0
  55. package/dist-es/endpoint/EndpointParameters.js +8 -0
  56. package/dist-es/endpoint/endpointResolver.js +8 -0
  57. package/dist-es/endpoint/ruleset.js +309 -0
  58. package/dist-es/index.js +6 -0
  59. package/dist-es/models/SimSpaceWeaverServiceException.js +7 -0
  60. package/dist-es/models/index.js +1 -0
  61. package/dist-es/models/models_0.js +275 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListAppsPaginator.js +32 -0
  64. package/dist-es/pagination/ListSimulationsPaginator.js +32 -0
  65. package/dist-es/pagination/index.js +3 -0
  66. package/dist-es/protocols/Aws_restJson1.js +1351 -0
  67. package/dist-es/runtimeConfig.browser.js +37 -0
  68. package/dist-es/runtimeConfig.js +45 -0
  69. package/dist-es/runtimeConfig.native.js +11 -0
  70. package/dist-es/runtimeConfig.shared.js +14 -0
  71. package/dist-types/SimSpaceWeaver.d.ts +134 -0
  72. package/dist-types/SimSpaceWeaverClient.d.ts +167 -0
  73. package/dist-types/commands/DeleteAppCommand.d.ts +37 -0
  74. package/dist-types/commands/DeleteSimulationCommand.d.ts +41 -0
  75. package/dist-types/commands/DescribeAppCommand.d.ts +37 -0
  76. package/dist-types/commands/DescribeSimulationCommand.d.ts +37 -0
  77. package/dist-types/commands/ListAppsCommand.d.ts +37 -0
  78. package/dist-types/commands/ListSimulationsCommand.d.ts +37 -0
  79. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  80. package/dist-types/commands/StartAppCommand.d.ts +37 -0
  81. package/dist-types/commands/StartClockCommand.d.ts +37 -0
  82. package/dist-types/commands/StartSimulationCommand.d.ts +37 -0
  83. package/dist-types/commands/StopAppCommand.d.ts +37 -0
  84. package/dist-types/commands/StopClockCommand.d.ts +37 -0
  85. package/dist-types/commands/StopSimulationCommand.d.ts +42 -0
  86. package/dist-types/commands/TagResourceCommand.d.ts +38 -0
  87. package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
  88. package/dist-types/commands/index.d.ts +15 -0
  89. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  90. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  91. package/dist-types/endpoint/ruleset.d.ts +2 -0
  92. package/dist-types/index.d.ts +6 -0
  93. package/dist-types/models/SimSpaceWeaverServiceException.d.ts +10 -0
  94. package/dist-types/models/index.d.ts +1 -0
  95. package/dist-types/models/models_0.d.ts +911 -0
  96. package/dist-types/pagination/Interfaces.d.ts +6 -0
  97. package/dist-types/pagination/ListAppsPaginator.d.ts +4 -0
  98. package/dist-types/pagination/ListSimulationsPaginator.d.ts +4 -0
  99. package/dist-types/pagination/index.d.ts +3 -0
  100. package/dist-types/protocols/Aws_restJson1.d.ts +47 -0
  101. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  102. package/dist-types/runtimeConfig.d.ts +42 -0
  103. package/dist-types/runtimeConfig.native.d.ts +41 -0
  104. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  105. package/dist-types/ts3.4/SimSpaceWeaver.d.ts +259 -0
  106. package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +202 -0
  107. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -0
  108. package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +37 -0
  109. package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +34 -0
  110. package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +38 -0
  111. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +37 -0
  113. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  114. package/dist-types/ts3.4/commands/StartAppCommand.d.ts +34 -0
  115. package/dist-types/ts3.4/commands/StartClockCommand.d.ts +34 -0
  116. package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +37 -0
  117. package/dist-types/ts3.4/commands/StopAppCommand.d.ts +32 -0
  118. package/dist-types/ts3.4/commands/StopClockCommand.d.ts +34 -0
  119. package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +34 -0
  120. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  121. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  122. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  123. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  124. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  125. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  126. package/dist-types/ts3.4/index.d.ts +6 -0
  127. package/dist-types/ts3.4/models/SimSpaceWeaverServiceException.d.ts +7 -0
  128. package/dist-types/ts3.4/models/index.d.ts +1 -0
  129. package/dist-types/ts3.4/models/models_0.d.ts +395 -0
  130. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  131. package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +11 -0
  133. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  134. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -0
  135. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  136. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  137. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  138. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  139. package/package.json +103 -0
@@ -0,0 +1,911 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
3
+ /**
4
+ * <p/>
5
+ */
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>A collection of TCP/UDP ports for a custom or service app.</p>
17
+ */
18
+ export interface SimulationAppPortMapping {
19
+ /**
20
+ * <p>The TCP/UDP port number of the app, declared in the simulation schema. SimSpace Weaver maps
21
+ * the <code>Declared</code> port to the <code>Actual</code> port. The source code for the
22
+ * app should bind to the <code>Declared</code> port.</p>
23
+ */
24
+ Declared?: number;
25
+ /**
26
+ * <p>The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port
27
+ * number when the app starts. SimSpace Weaver maps the <code>Declared</code> port to the
28
+ * <code>Actual</code> port. Clients connect to the app using the app's IP address
29
+ * and the <code>Actual</code> port number.</p>
30
+ */
31
+ Actual?: number;
32
+ }
33
+ export declare enum ClockStatus {
34
+ STARTED = "STARTED",
35
+ STARTING = "STARTING",
36
+ STOPPED = "STOPPED",
37
+ STOPPING = "STOPPING",
38
+ UNKNOWN = "UNKNOWN"
39
+ }
40
+ export declare enum ClockTargetStatus {
41
+ STARTED = "STARTED",
42
+ STOPPED = "STOPPED",
43
+ UNKNOWN = "UNKNOWN"
44
+ }
45
+ /**
46
+ * <p>The Amazon CloudWatch Logs log group for the simulation. For more information about log groups, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with log
47
+ * groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
48
+ */
49
+ export interface CloudWatchLogsLogGroup {
50
+ /**
51
+ * <p>The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group for the simulation.
52
+ * For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
53
+ * in the <i>Amazon Web Services General Reference</i>. For more information about log groups, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with log
54
+ * groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
55
+ */
56
+ LogGroupArn?: string;
57
+ }
58
+ /**
59
+ * <p/>
60
+ */
61
+ export declare class ConflictException extends __BaseException {
62
+ readonly name: "ConflictException";
63
+ readonly $fault: "client";
64
+ Message?: string;
65
+ /**
66
+ * @internal
67
+ */
68
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
69
+ }
70
+ export interface DeleteAppInput {
71
+ /**
72
+ * <p>The name of the simulation of the app.</p>
73
+ */
74
+ Simulation: string | undefined;
75
+ /**
76
+ * <p>The name of the domain of the app.</p>
77
+ */
78
+ Domain: string | undefined;
79
+ /**
80
+ * <p>The name of the app.</p>
81
+ */
82
+ App: string | undefined;
83
+ }
84
+ export interface DeleteAppOutput {
85
+ }
86
+ /**
87
+ * <p/>
88
+ */
89
+ export declare class InternalServerException extends __BaseException {
90
+ readonly name: "InternalServerException";
91
+ readonly $fault: "server";
92
+ Message?: string;
93
+ /**
94
+ * @internal
95
+ */
96
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
97
+ }
98
+ /**
99
+ * <p/>
100
+ */
101
+ export declare class ResourceNotFoundException extends __BaseException {
102
+ readonly name: "ResourceNotFoundException";
103
+ readonly $fault: "client";
104
+ Message?: string;
105
+ /**
106
+ * @internal
107
+ */
108
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
109
+ }
110
+ /**
111
+ * <p/>
112
+ */
113
+ export declare class ValidationException extends __BaseException {
114
+ readonly name: "ValidationException";
115
+ readonly $fault: "client";
116
+ Message?: string;
117
+ /**
118
+ * @internal
119
+ */
120
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
121
+ }
122
+ export interface DeleteSimulationInput {
123
+ /**
124
+ * <p>The name of the simulation.</p>
125
+ */
126
+ Simulation: string | undefined;
127
+ }
128
+ export interface DeleteSimulationOutput {
129
+ }
130
+ export interface DescribeAppInput {
131
+ /**
132
+ * <p>The name of the simulation of the app.</p>
133
+ */
134
+ Simulation: string | undefined;
135
+ /**
136
+ * <p>The name of the domain of the app.</p>
137
+ */
138
+ Domain: string | undefined;
139
+ /**
140
+ * <p>The name of the app.</p>
141
+ */
142
+ App: string | undefined;
143
+ }
144
+ /**
145
+ * <p>Information about the network endpoint that you can use to connect to your custom or
146
+ * service app.</p>
147
+ */
148
+ export interface SimulationAppEndpointInfo {
149
+ /**
150
+ * <p>The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the
151
+ * app starts.</p>
152
+ */
153
+ Address?: string;
154
+ /**
155
+ * <p>The inbound TCP/UDP port numbers of the app. The combination of an IP address and
156
+ * a port number form a network endpoint.</p>
157
+ */
158
+ IngressPortMappings?: SimulationAppPortMapping[];
159
+ }
160
+ /**
161
+ * <p>Options that apply when the app starts. These optiAons override default behavior.</p>
162
+ */
163
+ export interface LaunchOverrides {
164
+ /**
165
+ * <p>App launch commands and command line parameters that override the launch command
166
+ * configured in the simulation schema.</p>
167
+ */
168
+ LaunchCommands?: string[];
169
+ }
170
+ export declare enum SimulationAppStatus {
171
+ ERROR = "ERROR",
172
+ STARTED = "STARTED",
173
+ STARTING = "STARTING",
174
+ STOPPED = "STOPPED",
175
+ STOPPING = "STOPPING",
176
+ UNKNOWN = "UNKNOWN"
177
+ }
178
+ export declare enum SimulationAppTargetStatus {
179
+ STARTED = "STARTED",
180
+ STOPPED = "STOPPED",
181
+ UNKNOWN = "UNKNOWN"
182
+ }
183
+ export interface DescribeAppOutput {
184
+ /**
185
+ * <p>The name of the app.</p>
186
+ */
187
+ Name?: string;
188
+ /**
189
+ * <p>The name of the simulation of the app.</p>
190
+ */
191
+ Simulation?: string;
192
+ /**
193
+ * <p>The name of the domain of the app.</p>
194
+ */
195
+ Domain?: string;
196
+ /**
197
+ * <p>The current lifecycle state of the custom app.</p>
198
+ */
199
+ Status?: SimulationAppStatus | string;
200
+ /**
201
+ * <p>The desired lifecycle state of the custom app.</p>
202
+ */
203
+ TargetStatus?: SimulationAppTargetStatus | string;
204
+ /**
205
+ * <p>Options that apply when the app starts. These optiAons override default behavior.</p>
206
+ */
207
+ LaunchOverrides?: LaunchOverrides;
208
+ /**
209
+ * <p>The description of the app.</p>
210
+ */
211
+ Description?: string;
212
+ /**
213
+ * <p>Information about the network endpoint for the custom app. You can use the endpoint to connect to the custom app.</p>
214
+ */
215
+ EndpointInfo?: SimulationAppEndpointInfo;
216
+ }
217
+ export interface DescribeSimulationInput {
218
+ /**
219
+ * <p>The name of the simulation.</p>
220
+ */
221
+ Simulation: string | undefined;
222
+ }
223
+ /**
224
+ * <p>Status information about the simulation clock.</p>
225
+ */
226
+ export interface SimulationClock {
227
+ /**
228
+ * <p>The current status of the simulation clock.</p>
229
+ */
230
+ Status?: ClockStatus | string;
231
+ /**
232
+ * <p>The desired status of the simulation clock.</p>
233
+ */
234
+ TargetStatus?: ClockTargetStatus | string;
235
+ }
236
+ export declare enum LifecycleManagementStrategy {
237
+ ByRequest = "ByRequest",
238
+ BySpatialSubdivision = "BySpatialSubdivision",
239
+ PerWorker = "PerWorker",
240
+ Unknown = "Unknown"
241
+ }
242
+ /**
243
+ * <p>A collection of app instances that run the same executable app code and have the same
244
+ * launch options and commands.</p>
245
+ * <p>For more information about domains, see <a href="https://docs.aws.amazon.com/simspaceweaver/latest/userguide/what-is_key-concepts.html">Key concepts</a>
246
+ * in the <i>Amazon Web Services SimSpace Weaver User Guide</i>.</p>
247
+ */
248
+ export interface Domain {
249
+ /**
250
+ * <p>The name of the domain.</p>
251
+ */
252
+ Name?: string;
253
+ /**
254
+ * <p>The type of lifecycle management for apps in the domain. This value indicates whether
255
+ * apps in this domain are <i>managed</i> (SimSpace Weaver starts and stops the apps) or
256
+ * <i>unmanaged</i> (you must start and stop the apps).</p>
257
+ * <p class="title">
258
+ * <b>Lifecycle types</b>
259
+ * </p>
260
+ * <ul>
261
+ * <li>
262
+ * <p>
263
+ * <code>PerWorker</code> – Managed: SimSpace Weaver starts 1 app on each worker</p>
264
+ * </li>
265
+ * <li>
266
+ * <p>
267
+ * <code>BySpatialSubdivision</code> – Managed: SimSpace Weaver starts 1 app for each spatial partition</p>
268
+ * </li>
269
+ * <li>
270
+ * <p>
271
+ * <code>ByRequest</code> – Unmanaged: You use the <b>StartApp</b>
272
+ * API to start the apps and use the <b>StopApp</b> API to stop the apps.</p>
273
+ * </li>
274
+ * </ul>
275
+ * <note>
276
+ * <p>The lifecycle types will change when the service is released for general availability (GA).</p>
277
+ * </note>
278
+ */
279
+ Lifecycle?: LifecycleManagementStrategy | string;
280
+ }
281
+ /**
282
+ * <p>A collection of additional state information, such as
283
+ * domain and clock configuration.</p>
284
+ */
285
+ export interface LiveSimulationState {
286
+ /**
287
+ * <p>A list of domains for the simulation. For more information about domains, see <a href="https://docs.aws.amazon.com/simspaceweaver/latest/userguide/what-is_key-concepts.html">Key concepts</a>
288
+ * in the <i>Amazon Web Services SimSpace Weaver User Guide</i>.</p>
289
+ */
290
+ Domains?: Domain[];
291
+ /**
292
+ * <p>A list of simulation clocks.</p>
293
+ * <note>
294
+ * <p>At this time, a simulation has only one clock.</p>
295
+ * </note>
296
+ */
297
+ Clocks?: SimulationClock[];
298
+ }
299
+ /**
300
+ * <p>The location where SimSpace Weaver sends simulation log data.</p>
301
+ */
302
+ export interface LogDestination {
303
+ /**
304
+ * <p>An Amazon CloudWatch Logs log group that stores simulation log data. For more information about log groups, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with log
305
+ * groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
306
+ */
307
+ CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
308
+ }
309
+ /**
310
+ * <p>The logging configuration for a simulation.</p>
311
+ */
312
+ export interface LoggingConfiguration {
313
+ /**
314
+ * <p>A list of the locations where SimSpace Weaver sends simulation log data.</p>
315
+ */
316
+ Destinations?: LogDestination[];
317
+ }
318
+ /**
319
+ * <p>A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app zip
320
+ * files and schema file. For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
321
+ * <i>Amazon Simple Storage Service User Guide</i>
322
+ * </a>.</p>
323
+ */
324
+ export interface S3Location {
325
+ /**
326
+ * <p>The name of an Amazon S3 bucket. For more information about buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html">Creating,
327
+ * configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User
328
+ * Guide</i>.</p>
329
+ */
330
+ BucketName?: string;
331
+ /**
332
+ * <p>The key name of an object in Amazon S3. For more information about Amazon S3 objects and object
333
+ * keys, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/uploading-downloading-objects.html">Uploading,
334
+ * downloading, and working with objects in Amazon S3</a> in the <i>Amazon Simple Storage Service User
335
+ * Guide</i>.</p>
336
+ */
337
+ ObjectKey?: string;
338
+ }
339
+ export declare enum SimulationStatus {
340
+ DELETED = "DELETED",
341
+ DELETING = "DELETING",
342
+ FAILED = "FAILED",
343
+ STARTED = "STARTED",
344
+ STARTING = "STARTING",
345
+ STOPPED = "STOPPED",
346
+ STOPPING = "STOPPING",
347
+ UNKNOWN = "UNKNOWN"
348
+ }
349
+ export declare enum SimulationTargetStatus {
350
+ DELETED = "DELETED",
351
+ STARTED = "STARTED",
352
+ STOPPED = "STOPPED",
353
+ UNKNOWN = "UNKNOWN"
354
+ }
355
+ export interface DescribeSimulationOutput {
356
+ /**
357
+ * <p>The name of the simulation.</p>
358
+ */
359
+ Name?: string;
360
+ /**
361
+ * <p>A universally unique identifier (UUID) for this simulation.</p>
362
+ */
363
+ ExecutionId?: string;
364
+ /**
365
+ * <p>The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
366
+ * in the <i>Amazon Web Services General Reference</i>.</p>
367
+ */
368
+ Arn?: string;
369
+ /**
370
+ * <p>The description of the simulation.</p>
371
+ */
372
+ Description?: string;
373
+ /**
374
+ * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
375
+ * that the simulation assumes to perform actions. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
376
+ * in the <i>Amazon Web Services General Reference</i>. For more information about IAM roles,
377
+ * see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM roles</a> in the
378
+ * <i>Identity and Access Management User Guide</i>.</p>
379
+ */
380
+ RoleArn?: string;
381
+ /**
382
+ * <p>The time when the simulation was created, expressed as the
383
+ * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
384
+ */
385
+ CreationTime?: Date;
386
+ /**
387
+ * <p>The current lifecycle state of the simulation.</p>
388
+ */
389
+ Status?: SimulationStatus | string;
390
+ /**
391
+ * <p>The desired lifecycle state of the simulation.</p>
392
+ */
393
+ TargetStatus?: SimulationTargetStatus | string;
394
+ /**
395
+ * <p>The location of the simulation schema in Amazon Simple Storage Service (Amazon S3).
396
+ * For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
397
+ * <i>Amazon Simple Storage Service User Guide</i>
398
+ * </a>.</p>
399
+ */
400
+ SchemaS3Location?: S3Location;
401
+ /**
402
+ * <p>An error message that SimSpace Weaver returns only if there is a problem with the simulation
403
+ * schema.</p>
404
+ */
405
+ SchemaError?: string;
406
+ /**
407
+ * <p>Settings that control how SimSpace Weaver handles your simulation log data.</p>
408
+ */
409
+ LoggingConfiguration?: LoggingConfiguration;
410
+ /**
411
+ * <p>A collection of additional state information, such as
412
+ * domain and clock configuration.</p>
413
+ */
414
+ LiveSimulationState?: LiveSimulationState;
415
+ /**
416
+ * <p>The maximum running time of the simulation,
417
+ * specified as a number of months (m or M), hours (h or H), or days (d or D). The simulation
418
+ * stops when it reaches this limit.</p>
419
+ */
420
+ MaximumDuration?: string;
421
+ }
422
+ export interface ListAppsInput {
423
+ /**
424
+ * <p>The name of the simulation that you want to list apps for.</p>
425
+ */
426
+ Simulation: string | undefined;
427
+ /**
428
+ * <p>The name of the domain that you want to list apps for.</p>
429
+ */
430
+ Domain?: string;
431
+ /**
432
+ * <p>The maximum number of apps to list.</p>
433
+ */
434
+ MaxResults?: number;
435
+ /**
436
+ * <p>If SimSpace Weaver returns <code>nextToken</code>, there are more results available.
437
+ * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
438
+ * call the operation again using the returned token. Keep all other arguments unchanged. If no results remain,
439
+ * <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours.
440
+ * If you provide a token that isn't valid, you receive an <i>HTTP 400 ValidationException</i> error.</p>
441
+ */
442
+ NextToken?: string;
443
+ }
444
+ /**
445
+ * <p>A collection of metadata about an app.</p>
446
+ */
447
+ export interface SimulationAppMetadata {
448
+ /**
449
+ * <p>The name of the app.</p>
450
+ */
451
+ Name?: string;
452
+ /**
453
+ * <p>The name of the simulation of the app.</p>
454
+ */
455
+ Simulation?: string;
456
+ /**
457
+ * <p>The domain of the app. For more information about domains, see <a href="https://docs.aws.amazon.com/simspaceweaver/latest/userguide/what-is_key-concepts.html">Key concepts</a>
458
+ * in the <i>Amazon Web Services SimSpace Weaver User Guide</i>.</p>
459
+ */
460
+ Domain?: string;
461
+ /**
462
+ * <p>The current status of the app.</p>
463
+ */
464
+ Status?: SimulationAppStatus | string;
465
+ /**
466
+ * <p>The desired status of the app.</p>
467
+ */
468
+ TargetStatus?: SimulationAppTargetStatus | string;
469
+ }
470
+ export interface ListAppsOutput {
471
+ /**
472
+ * <p>The list of apps for the given simulation and domain.</p>
473
+ */
474
+ Apps?: SimulationAppMetadata[];
475
+ /**
476
+ * <p>If SimSpace Weaver returns <code>nextToken</code>, there are more results available.
477
+ * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
478
+ * call the operation again using the returned token. Keep all other arguments unchanged. If no results remain,
479
+ * <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours.
480
+ * If you provide a token that isn't valid, you receive an <i>HTTP 400 ValidationException</i> error.</p>
481
+ */
482
+ NextToken?: string;
483
+ }
484
+ export interface ListSimulationsInput {
485
+ /**
486
+ * <p>The maximum number of simulations to list.</p>
487
+ */
488
+ MaxResults?: number;
489
+ /**
490
+ * <p>If SimSpace Weaver returns <code>nextToken</code>, there are more results available.
491
+ * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
492
+ * call the operation again using the returned token. Keep all other arguments unchanged. If no results remain,
493
+ * <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours.
494
+ * If you provide a token that isn't valid, you receive an <i>HTTP 400 ValidationException</i> error.</p>
495
+ */
496
+ NextToken?: string;
497
+ }
498
+ /**
499
+ * <p>A collection of data about the simulation.</p>
500
+ */
501
+ export interface SimulationMetadata {
502
+ /**
503
+ * <p>The name of the simulation.</p>
504
+ */
505
+ Name?: string;
506
+ /**
507
+ * <p>The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
508
+ * in the <i>Amazon Web Services General Reference</i>.</p>
509
+ */
510
+ Arn?: string;
511
+ /**
512
+ * <p>The time when the simulation was created, expressed as the
513
+ * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
514
+ */
515
+ CreationTime?: Date;
516
+ /**
517
+ * <p>The current status of the simulation.</p>
518
+ */
519
+ Status?: SimulationStatus | string;
520
+ /**
521
+ * <p>The desired status of the simulation.</p>
522
+ */
523
+ TargetStatus?: SimulationTargetStatus | string;
524
+ }
525
+ export interface ListSimulationsOutput {
526
+ /**
527
+ * <p>The list of simulations.</p>
528
+ */
529
+ Simulations?: SimulationMetadata[];
530
+ /**
531
+ * <p>If SimSpace Weaver returns <code>nextToken</code>, there are more results available.
532
+ * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
533
+ * call the operation again using the returned token. Keep all other arguments unchanged. If no results remain,
534
+ * <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours.
535
+ * If you provide a token that isn't valid, you receive an <i>HTTP 400 ValidationException</i> error.</p>
536
+ */
537
+ NextToken?: string;
538
+ }
539
+ export interface ListTagsForResourceInput {
540
+ /**
541
+ * <p>The Amazon Resource Name (ARN) of the resource. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
542
+ * in the <i>Amazon Web Services General Reference</i>.</p>
543
+ */
544
+ ResourceArn: string | undefined;
545
+ }
546
+ export interface ListTagsForResourceOutput {
547
+ /**
548
+ * <p>The list of tags for the resource.</p>
549
+ */
550
+ Tags?: Record<string, string>;
551
+ }
552
+ /**
553
+ * <p/>
554
+ */
555
+ export declare class ServiceQuotaExceededException extends __BaseException {
556
+ readonly name: "ServiceQuotaExceededException";
557
+ readonly $fault: "client";
558
+ Message?: string;
559
+ /**
560
+ * @internal
561
+ */
562
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
563
+ }
564
+ export interface StartAppInput {
565
+ /**
566
+ * <p>A value that you provide to ensure that repeated calls to this
567
+ * API operation using the same parameters complete only once. A <code>ClientToken</code> is also known as an
568
+ * <i>idempotency token</i>. A <code>ClientToken</code> expires after 24 hours.</p>
569
+ */
570
+ ClientToken?: string;
571
+ /**
572
+ * <p>The name of the simulation of the app.</p>
573
+ */
574
+ Simulation: string | undefined;
575
+ /**
576
+ * <p>The name of the domain of the app.</p>
577
+ */
578
+ Domain: string | undefined;
579
+ /**
580
+ * <p>The name of the app.</p>
581
+ */
582
+ Name: string | undefined;
583
+ /**
584
+ * <p>The description of the app.</p>
585
+ */
586
+ Description?: string;
587
+ /**
588
+ * <p>Options that apply when the app starts. These optiAons override default behavior.</p>
589
+ */
590
+ LaunchOverrides?: LaunchOverrides;
591
+ }
592
+ export interface StartAppOutput {
593
+ /**
594
+ * <p>The name of the app.</p>
595
+ */
596
+ Name?: string;
597
+ /**
598
+ * <p>The name of the domain of the app.</p>
599
+ */
600
+ Domain?: string;
601
+ /**
602
+ * <p>The name of the simulation of the app.</p>
603
+ */
604
+ Simulation?: string;
605
+ }
606
+ export interface StartClockInput {
607
+ /**
608
+ * <p>The name of the simulation.</p>
609
+ */
610
+ Simulation: string | undefined;
611
+ }
612
+ export interface StartClockOutput {
613
+ }
614
+ export interface StartSimulationInput {
615
+ /**
616
+ * <p>A value that you provide to ensure that repeated calls to this
617
+ * API operation using the same parameters complete only once. A <code>ClientToken</code> is also known as an
618
+ * <i>idempotency token</i>. A <code>ClientToken</code> expires after 24 hours.</p>
619
+ */
620
+ ClientToken?: string;
621
+ /**
622
+ * <p>The name of the simulation.</p>
623
+ */
624
+ Name: string | undefined;
625
+ /**
626
+ * <p>The description of the simulation.</p>
627
+ */
628
+ Description?: string;
629
+ /**
630
+ * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
631
+ * that the simulation assumes to perform actions. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
632
+ * in the <i>Amazon Web Services General Reference</i>. For more information about IAM roles,
633
+ * see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM roles</a> in the
634
+ * <i>Identity and Access Management User Guide</i>.</p>
635
+ */
636
+ RoleArn: string | undefined;
637
+ /**
638
+ * <p>The location of the simulation schema in Amazon Simple Storage Service (Amazon S3).
639
+ * For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
640
+ * <i>Amazon Simple Storage Service User Guide</i>
641
+ * </a>.</p>
642
+ */
643
+ SchemaS3Location: S3Location | undefined;
644
+ /**
645
+ * <p>The maximum running time of the simulation,
646
+ * specified as a number of months (m or M), hours (h or H), or days (d or D). The simulation
647
+ * stops when it reaches this limit.</p>
648
+ */
649
+ MaximumDuration?: string;
650
+ /**
651
+ * <p>A list of tags for the simulation. For more information about tags, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the
652
+ * <i>Amazon Web Services General Reference</i>.</p>
653
+ */
654
+ Tags?: Record<string, string>;
655
+ }
656
+ export interface StartSimulationOutput {
657
+ /**
658
+ * <p>The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
659
+ * in the <i>Amazon Web Services General Reference</i>.</p>
660
+ */
661
+ Arn?: string;
662
+ /**
663
+ * <p>A universally unique identifier (UUID) for this simulation.</p>
664
+ */
665
+ ExecutionId?: string;
666
+ /**
667
+ * <p>The time when the simulation was created, expressed as the
668
+ * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
669
+ */
670
+ CreationTime?: Date;
671
+ }
672
+ export interface StopAppInput {
673
+ /**
674
+ * <p>The name of the simulation of the app.</p>
675
+ */
676
+ Simulation: string | undefined;
677
+ /**
678
+ * <p>The name of the domain of the app.</p>
679
+ */
680
+ Domain: string | undefined;
681
+ /**
682
+ * <p>The name of the app.</p>
683
+ */
684
+ App: string | undefined;
685
+ }
686
+ export interface StopAppOutput {
687
+ }
688
+ export interface StopClockInput {
689
+ /**
690
+ * <p>The name of the simulation.</p>
691
+ */
692
+ Simulation: string | undefined;
693
+ }
694
+ export interface StopClockOutput {
695
+ }
696
+ export interface StopSimulationInput {
697
+ /**
698
+ * <p>The name of the simulation.</p>
699
+ */
700
+ Simulation: string | undefined;
701
+ }
702
+ export interface StopSimulationOutput {
703
+ }
704
+ export interface TagResourceInput {
705
+ /**
706
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to add tags to.
707
+ * For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
708
+ * in the <i>Amazon Web Services General Reference</i>.</p>
709
+ */
710
+ ResourceArn: string | undefined;
711
+ /**
712
+ * <p>A list of tags to apply to the resource.</p>
713
+ */
714
+ Tags: Record<string, string> | undefined;
715
+ }
716
+ export interface TagResourceOutput {
717
+ }
718
+ /**
719
+ * <p/>
720
+ */
721
+ export declare class TooManyTagsException extends __BaseException {
722
+ readonly name: "TooManyTagsException";
723
+ readonly $fault: "client";
724
+ Message?: string;
725
+ /**
726
+ * @internal
727
+ */
728
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
729
+ }
730
+ export interface UntagResourceInput {
731
+ /**
732
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.
733
+ * For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
734
+ * in the <i>Amazon Web Services General Reference</i>.</p>
735
+ */
736
+ ResourceArn: string | undefined;
737
+ /**
738
+ * <p>A list of tag keys to remove from the resource.</p>
739
+ */
740
+ TagKeys: string[] | undefined;
741
+ }
742
+ export interface UntagResourceOutput {
743
+ }
744
+ /**
745
+ * @internal
746
+ */
747
+ export declare const SimulationAppPortMappingFilterSensitiveLog: (obj: SimulationAppPortMapping) => any;
748
+ /**
749
+ * @internal
750
+ */
751
+ export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (obj: CloudWatchLogsLogGroup) => any;
752
+ /**
753
+ * @internal
754
+ */
755
+ export declare const DeleteAppInputFilterSensitiveLog: (obj: DeleteAppInput) => any;
756
+ /**
757
+ * @internal
758
+ */
759
+ export declare const DeleteAppOutputFilterSensitiveLog: (obj: DeleteAppOutput) => any;
760
+ /**
761
+ * @internal
762
+ */
763
+ export declare const DeleteSimulationInputFilterSensitiveLog: (obj: DeleteSimulationInput) => any;
764
+ /**
765
+ * @internal
766
+ */
767
+ export declare const DeleteSimulationOutputFilterSensitiveLog: (obj: DeleteSimulationOutput) => any;
768
+ /**
769
+ * @internal
770
+ */
771
+ export declare const DescribeAppInputFilterSensitiveLog: (obj: DescribeAppInput) => any;
772
+ /**
773
+ * @internal
774
+ */
775
+ export declare const SimulationAppEndpointInfoFilterSensitiveLog: (obj: SimulationAppEndpointInfo) => any;
776
+ /**
777
+ * @internal
778
+ */
779
+ export declare const LaunchOverridesFilterSensitiveLog: (obj: LaunchOverrides) => any;
780
+ /**
781
+ * @internal
782
+ */
783
+ export declare const DescribeAppOutputFilterSensitiveLog: (obj: DescribeAppOutput) => any;
784
+ /**
785
+ * @internal
786
+ */
787
+ export declare const DescribeSimulationInputFilterSensitiveLog: (obj: DescribeSimulationInput) => any;
788
+ /**
789
+ * @internal
790
+ */
791
+ export declare const SimulationClockFilterSensitiveLog: (obj: SimulationClock) => any;
792
+ /**
793
+ * @internal
794
+ */
795
+ export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
796
+ /**
797
+ * @internal
798
+ */
799
+ export declare const LiveSimulationStateFilterSensitiveLog: (obj: LiveSimulationState) => any;
800
+ /**
801
+ * @internal
802
+ */
803
+ export declare const LogDestinationFilterSensitiveLog: (obj: LogDestination) => any;
804
+ /**
805
+ * @internal
806
+ */
807
+ export declare const LoggingConfigurationFilterSensitiveLog: (obj: LoggingConfiguration) => any;
808
+ /**
809
+ * @internal
810
+ */
811
+ export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
812
+ /**
813
+ * @internal
814
+ */
815
+ export declare const DescribeSimulationOutputFilterSensitiveLog: (obj: DescribeSimulationOutput) => any;
816
+ /**
817
+ * @internal
818
+ */
819
+ export declare const ListAppsInputFilterSensitiveLog: (obj: ListAppsInput) => any;
820
+ /**
821
+ * @internal
822
+ */
823
+ export declare const SimulationAppMetadataFilterSensitiveLog: (obj: SimulationAppMetadata) => any;
824
+ /**
825
+ * @internal
826
+ */
827
+ export declare const ListAppsOutputFilterSensitiveLog: (obj: ListAppsOutput) => any;
828
+ /**
829
+ * @internal
830
+ */
831
+ export declare const ListSimulationsInputFilterSensitiveLog: (obj: ListSimulationsInput) => any;
832
+ /**
833
+ * @internal
834
+ */
835
+ export declare const SimulationMetadataFilterSensitiveLog: (obj: SimulationMetadata) => any;
836
+ /**
837
+ * @internal
838
+ */
839
+ export declare const ListSimulationsOutputFilterSensitiveLog: (obj: ListSimulationsOutput) => any;
840
+ /**
841
+ * @internal
842
+ */
843
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
844
+ /**
845
+ * @internal
846
+ */
847
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
848
+ /**
849
+ * @internal
850
+ */
851
+ export declare const StartAppInputFilterSensitiveLog: (obj: StartAppInput) => any;
852
+ /**
853
+ * @internal
854
+ */
855
+ export declare const StartAppOutputFilterSensitiveLog: (obj: StartAppOutput) => any;
856
+ /**
857
+ * @internal
858
+ */
859
+ export declare const StartClockInputFilterSensitiveLog: (obj: StartClockInput) => any;
860
+ /**
861
+ * @internal
862
+ */
863
+ export declare const StartClockOutputFilterSensitiveLog: (obj: StartClockOutput) => any;
864
+ /**
865
+ * @internal
866
+ */
867
+ export declare const StartSimulationInputFilterSensitiveLog: (obj: StartSimulationInput) => any;
868
+ /**
869
+ * @internal
870
+ */
871
+ export declare const StartSimulationOutputFilterSensitiveLog: (obj: StartSimulationOutput) => any;
872
+ /**
873
+ * @internal
874
+ */
875
+ export declare const StopAppInputFilterSensitiveLog: (obj: StopAppInput) => any;
876
+ /**
877
+ * @internal
878
+ */
879
+ export declare const StopAppOutputFilterSensitiveLog: (obj: StopAppOutput) => any;
880
+ /**
881
+ * @internal
882
+ */
883
+ export declare const StopClockInputFilterSensitiveLog: (obj: StopClockInput) => any;
884
+ /**
885
+ * @internal
886
+ */
887
+ export declare const StopClockOutputFilterSensitiveLog: (obj: StopClockOutput) => any;
888
+ /**
889
+ * @internal
890
+ */
891
+ export declare const StopSimulationInputFilterSensitiveLog: (obj: StopSimulationInput) => any;
892
+ /**
893
+ * @internal
894
+ */
895
+ export declare const StopSimulationOutputFilterSensitiveLog: (obj: StopSimulationOutput) => any;
896
+ /**
897
+ * @internal
898
+ */
899
+ export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
900
+ /**
901
+ * @internal
902
+ */
903
+ export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
904
+ /**
905
+ * @internal
906
+ */
907
+ export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
908
+ /**
909
+ * @internal
910
+ */
911
+ export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;