@aws-sdk/client-simspaceweaver 3.300.0 → 3.303.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.
@@ -17,20 +17,18 @@ class AccessDeniedException extends SimSpaceWeaverServiceException_1.SimSpaceWea
17
17
  }
18
18
  }
19
19
  exports.AccessDeniedException = AccessDeniedException;
20
- var ClockStatus;
21
- (function (ClockStatus) {
22
- ClockStatus["STARTED"] = "STARTED";
23
- ClockStatus["STARTING"] = "STARTING";
24
- ClockStatus["STOPPED"] = "STOPPED";
25
- ClockStatus["STOPPING"] = "STOPPING";
26
- ClockStatus["UNKNOWN"] = "UNKNOWN";
27
- })(ClockStatus = exports.ClockStatus || (exports.ClockStatus = {}));
28
- var ClockTargetStatus;
29
- (function (ClockTargetStatus) {
30
- ClockTargetStatus["STARTED"] = "STARTED";
31
- ClockTargetStatus["STOPPED"] = "STOPPED";
32
- ClockTargetStatus["UNKNOWN"] = "UNKNOWN";
33
- })(ClockTargetStatus = exports.ClockTargetStatus || (exports.ClockTargetStatus = {}));
20
+ exports.ClockStatus = {
21
+ STARTED: "STARTED",
22
+ STARTING: "STARTING",
23
+ STOPPED: "STOPPED",
24
+ STOPPING: "STOPPING",
25
+ UNKNOWN: "UNKNOWN",
26
+ };
27
+ exports.ClockTargetStatus = {
28
+ STARTED: "STARTED",
29
+ STOPPED: "STOPPED",
30
+ UNKNOWN: "UNKNOWN",
31
+ };
34
32
  class ConflictException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
35
33
  constructor(opts) {
36
34
  super({
@@ -87,46 +85,41 @@ class ValidationException extends SimSpaceWeaverServiceException_1.SimSpaceWeave
87
85
  }
88
86
  }
89
87
  exports.ValidationException = ValidationException;
90
- var SimulationAppStatus;
91
- (function (SimulationAppStatus) {
92
- SimulationAppStatus["ERROR"] = "ERROR";
93
- SimulationAppStatus["STARTED"] = "STARTED";
94
- SimulationAppStatus["STARTING"] = "STARTING";
95
- SimulationAppStatus["STOPPED"] = "STOPPED";
96
- SimulationAppStatus["STOPPING"] = "STOPPING";
97
- SimulationAppStatus["UNKNOWN"] = "UNKNOWN";
98
- })(SimulationAppStatus = exports.SimulationAppStatus || (exports.SimulationAppStatus = {}));
99
- var SimulationAppTargetStatus;
100
- (function (SimulationAppTargetStatus) {
101
- SimulationAppTargetStatus["STARTED"] = "STARTED";
102
- SimulationAppTargetStatus["STOPPED"] = "STOPPED";
103
- SimulationAppTargetStatus["UNKNOWN"] = "UNKNOWN";
104
- })(SimulationAppTargetStatus = exports.SimulationAppTargetStatus || (exports.SimulationAppTargetStatus = {}));
105
- var LifecycleManagementStrategy;
106
- (function (LifecycleManagementStrategy) {
107
- LifecycleManagementStrategy["ByRequest"] = "ByRequest";
108
- LifecycleManagementStrategy["BySpatialSubdivision"] = "BySpatialSubdivision";
109
- LifecycleManagementStrategy["PerWorker"] = "PerWorker";
110
- LifecycleManagementStrategy["Unknown"] = "Unknown";
111
- })(LifecycleManagementStrategy = exports.LifecycleManagementStrategy || (exports.LifecycleManagementStrategy = {}));
112
- var SimulationStatus;
113
- (function (SimulationStatus) {
114
- SimulationStatus["DELETED"] = "DELETED";
115
- SimulationStatus["DELETING"] = "DELETING";
116
- SimulationStatus["FAILED"] = "FAILED";
117
- SimulationStatus["STARTED"] = "STARTED";
118
- SimulationStatus["STARTING"] = "STARTING";
119
- SimulationStatus["STOPPED"] = "STOPPED";
120
- SimulationStatus["STOPPING"] = "STOPPING";
121
- SimulationStatus["UNKNOWN"] = "UNKNOWN";
122
- })(SimulationStatus = exports.SimulationStatus || (exports.SimulationStatus = {}));
123
- var SimulationTargetStatus;
124
- (function (SimulationTargetStatus) {
125
- SimulationTargetStatus["DELETED"] = "DELETED";
126
- SimulationTargetStatus["STARTED"] = "STARTED";
127
- SimulationTargetStatus["STOPPED"] = "STOPPED";
128
- SimulationTargetStatus["UNKNOWN"] = "UNKNOWN";
129
- })(SimulationTargetStatus = exports.SimulationTargetStatus || (exports.SimulationTargetStatus = {}));
88
+ exports.SimulationAppStatus = {
89
+ ERROR: "ERROR",
90
+ STARTED: "STARTED",
91
+ STARTING: "STARTING",
92
+ STOPPED: "STOPPED",
93
+ STOPPING: "STOPPING",
94
+ UNKNOWN: "UNKNOWN",
95
+ };
96
+ exports.SimulationAppTargetStatus = {
97
+ STARTED: "STARTED",
98
+ STOPPED: "STOPPED",
99
+ UNKNOWN: "UNKNOWN",
100
+ };
101
+ exports.LifecycleManagementStrategy = {
102
+ ByRequest: "ByRequest",
103
+ BySpatialSubdivision: "BySpatialSubdivision",
104
+ PerWorker: "PerWorker",
105
+ Unknown: "Unknown",
106
+ };
107
+ exports.SimulationStatus = {
108
+ DELETED: "DELETED",
109
+ DELETING: "DELETING",
110
+ FAILED: "FAILED",
111
+ STARTED: "STARTED",
112
+ STARTING: "STARTING",
113
+ STOPPED: "STOPPED",
114
+ STOPPING: "STOPPING",
115
+ UNKNOWN: "UNKNOWN",
116
+ };
117
+ exports.SimulationTargetStatus = {
118
+ DELETED: "DELETED",
119
+ STARTED: "STARTED",
120
+ STOPPED: "STOPPED",
121
+ UNKNOWN: "UNKNOWN",
122
+ };
130
123
  class ServiceQuotaExceededException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
131
124
  constructor(opts) {
132
125
  super({
@@ -13,20 +13,18 @@ export class AccessDeniedException extends __BaseException {
13
13
  this.Message = opts.Message;
14
14
  }
15
15
  }
16
- export var ClockStatus;
17
- (function (ClockStatus) {
18
- ClockStatus["STARTED"] = "STARTED";
19
- ClockStatus["STARTING"] = "STARTING";
20
- ClockStatus["STOPPED"] = "STOPPED";
21
- ClockStatus["STOPPING"] = "STOPPING";
22
- ClockStatus["UNKNOWN"] = "UNKNOWN";
23
- })(ClockStatus || (ClockStatus = {}));
24
- export var ClockTargetStatus;
25
- (function (ClockTargetStatus) {
26
- ClockTargetStatus["STARTED"] = "STARTED";
27
- ClockTargetStatus["STOPPED"] = "STOPPED";
28
- ClockTargetStatus["UNKNOWN"] = "UNKNOWN";
29
- })(ClockTargetStatus || (ClockTargetStatus = {}));
16
+ export const ClockStatus = {
17
+ STARTED: "STARTED",
18
+ STARTING: "STARTING",
19
+ STOPPED: "STOPPED",
20
+ STOPPING: "STOPPING",
21
+ UNKNOWN: "UNKNOWN",
22
+ };
23
+ export const ClockTargetStatus = {
24
+ STARTED: "STARTED",
25
+ STOPPED: "STOPPED",
26
+ UNKNOWN: "UNKNOWN",
27
+ };
30
28
  export class ConflictException extends __BaseException {
31
29
  constructor(opts) {
32
30
  super({
@@ -79,46 +77,41 @@ export class ValidationException extends __BaseException {
79
77
  this.Message = opts.Message;
80
78
  }
81
79
  }
82
- export var SimulationAppStatus;
83
- (function (SimulationAppStatus) {
84
- SimulationAppStatus["ERROR"] = "ERROR";
85
- SimulationAppStatus["STARTED"] = "STARTED";
86
- SimulationAppStatus["STARTING"] = "STARTING";
87
- SimulationAppStatus["STOPPED"] = "STOPPED";
88
- SimulationAppStatus["STOPPING"] = "STOPPING";
89
- SimulationAppStatus["UNKNOWN"] = "UNKNOWN";
90
- })(SimulationAppStatus || (SimulationAppStatus = {}));
91
- export var SimulationAppTargetStatus;
92
- (function (SimulationAppTargetStatus) {
93
- SimulationAppTargetStatus["STARTED"] = "STARTED";
94
- SimulationAppTargetStatus["STOPPED"] = "STOPPED";
95
- SimulationAppTargetStatus["UNKNOWN"] = "UNKNOWN";
96
- })(SimulationAppTargetStatus || (SimulationAppTargetStatus = {}));
97
- export var LifecycleManagementStrategy;
98
- (function (LifecycleManagementStrategy) {
99
- LifecycleManagementStrategy["ByRequest"] = "ByRequest";
100
- LifecycleManagementStrategy["BySpatialSubdivision"] = "BySpatialSubdivision";
101
- LifecycleManagementStrategy["PerWorker"] = "PerWorker";
102
- LifecycleManagementStrategy["Unknown"] = "Unknown";
103
- })(LifecycleManagementStrategy || (LifecycleManagementStrategy = {}));
104
- export var SimulationStatus;
105
- (function (SimulationStatus) {
106
- SimulationStatus["DELETED"] = "DELETED";
107
- SimulationStatus["DELETING"] = "DELETING";
108
- SimulationStatus["FAILED"] = "FAILED";
109
- SimulationStatus["STARTED"] = "STARTED";
110
- SimulationStatus["STARTING"] = "STARTING";
111
- SimulationStatus["STOPPED"] = "STOPPED";
112
- SimulationStatus["STOPPING"] = "STOPPING";
113
- SimulationStatus["UNKNOWN"] = "UNKNOWN";
114
- })(SimulationStatus || (SimulationStatus = {}));
115
- export var SimulationTargetStatus;
116
- (function (SimulationTargetStatus) {
117
- SimulationTargetStatus["DELETED"] = "DELETED";
118
- SimulationTargetStatus["STARTED"] = "STARTED";
119
- SimulationTargetStatus["STOPPED"] = "STOPPED";
120
- SimulationTargetStatus["UNKNOWN"] = "UNKNOWN";
121
- })(SimulationTargetStatus || (SimulationTargetStatus = {}));
80
+ export const SimulationAppStatus = {
81
+ ERROR: "ERROR",
82
+ STARTED: "STARTED",
83
+ STARTING: "STARTING",
84
+ STOPPED: "STOPPED",
85
+ STOPPING: "STOPPING",
86
+ UNKNOWN: "UNKNOWN",
87
+ };
88
+ export const SimulationAppTargetStatus = {
89
+ STARTED: "STARTED",
90
+ STOPPED: "STOPPED",
91
+ UNKNOWN: "UNKNOWN",
92
+ };
93
+ export const LifecycleManagementStrategy = {
94
+ ByRequest: "ByRequest",
95
+ BySpatialSubdivision: "BySpatialSubdivision",
96
+ PerWorker: "PerWorker",
97
+ Unknown: "Unknown",
98
+ };
99
+ export const SimulationStatus = {
100
+ DELETED: "DELETED",
101
+ DELETING: "DELETING",
102
+ FAILED: "FAILED",
103
+ STARTED: "STARTED",
104
+ STARTING: "STARTING",
105
+ STOPPED: "STOPPED",
106
+ STOPPING: "STOPPING",
107
+ UNKNOWN: "UNKNOWN",
108
+ };
109
+ export const SimulationTargetStatus = {
110
+ DELETED: "DELETED",
111
+ STARTED: "STARTED",
112
+ STOPPED: "STOPPED",
113
+ UNKNOWN: "UNKNOWN",
114
+ };
122
115
  export class ServiceQuotaExceededException extends __BaseException {
123
116
  constructor(opts) {
124
117
  super({
@@ -26,7 +26,7 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
26
26
  * import { SimSpaceWeaverClient, DeleteAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DeleteAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // DeleteAppInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * Domain: "STRING_VALUE", // required
32
32
  * App: "STRING_VALUE", // required
@@ -30,7 +30,7 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
30
30
  * import { SimSpaceWeaverClient, DeleteSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
31
31
  * // const { SimSpaceWeaverClient, DeleteSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
32
32
  * const client = new SimSpaceWeaverClient(config);
33
- * const input = {
33
+ * const input = { // DeleteSimulationInput
34
34
  * Simulation: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteSimulationCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
26
26
  * import { SimSpaceWeaverClient, DescribeAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DescribeAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAppInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * Domain: "STRING_VALUE", // required
32
32
  * App: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
26
26
  * import { SimSpaceWeaverClient, DescribeSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DescribeSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // DescribeSimulationInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeSimulationCommand(input);
@@ -26,7 +26,7 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
26
26
  * import { SimSpaceWeaverClient, ListAppsCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListAppsCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // ListAppsInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * Domain: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
26
26
  * import { SimSpaceWeaverClient, ListSimulationsCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListSimulationsCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // ListSimulationsInput
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { SimSpaceWeaverClient, ListTagsForResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListTagsForResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceInput
30
30
  * ResourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,14 +26,14 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
26
26
  * import { SimSpaceWeaverClient, StartAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // StartAppInput
30
30
  * ClientToken: "STRING_VALUE",
31
31
  * Simulation: "STRING_VALUE", // required
32
32
  * Domain: "STRING_VALUE", // required
33
33
  * Name: "STRING_VALUE", // required
34
34
  * Description: "STRING_VALUE",
35
- * LaunchOverrides: {
36
- * LaunchCommands: [
35
+ * LaunchOverrides: { // LaunchOverrides
36
+ * LaunchCommands: [ // LaunchCommandList
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * },
@@ -26,7 +26,7 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
26
26
  * import { SimSpaceWeaverClient, StartClockCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartClockCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // StartClockInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StartClockCommand(input);
@@ -26,17 +26,17 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
26
26
  * import { SimSpaceWeaverClient, StartSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // StartSimulationInput
30
30
  * ClientToken: "STRING_VALUE",
31
31
  * Name: "STRING_VALUE", // required
32
32
  * Description: "STRING_VALUE",
33
33
  * RoleArn: "STRING_VALUE", // required
34
- * SchemaS3Location: {
34
+ * SchemaS3Location: { // S3Location
35
35
  * BucketName: "STRING_VALUE",
36
36
  * ObjectKey: "STRING_VALUE",
37
37
  * },
38
38
  * MaximumDuration: "STRING_VALUE",
39
- * Tags: {
39
+ * Tags: { // TagMap
40
40
  * "<keys>": "STRING_VALUE",
41
41
  * },
42
42
  * };
@@ -26,7 +26,7 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
26
26
  * import { SimSpaceWeaverClient, StopAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StopAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // StopAppInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * Domain: "STRING_VALUE", // required
32
32
  * App: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
26
26
  * import { SimSpaceWeaverClient, StopClockCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StopClockCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
- * const input = {
29
+ * const input = { // StopClockInput
30
30
  * Simulation: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StopClockCommand(input);
@@ -31,7 +31,7 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
31
31
  * import { SimSpaceWeaverClient, StopSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
32
32
  * // const { SimSpaceWeaverClient, StopSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
33
33
  * const client = new SimSpaceWeaverClient(config);
34
- * const input = {
34
+ * const input = { // StopSimulationInput
35
35
  * Simulation: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new StopSimulationCommand(input);
@@ -27,9 +27,9 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
27
  * import { SimSpaceWeaverClient, TagResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
28
28
  * // const { SimSpaceWeaverClient, TagResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
29
29
  * const client = new SimSpaceWeaverClient(config);
30
- * const input = {
30
+ * const input = { // TagResourceInput
31
31
  * ResourceArn: "STRING_VALUE", // required
32
- * Tags: { // required
32
+ * Tags: { // TagMap // required
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
27
27
  * import { SimSpaceWeaverClient, UntagResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
28
28
  * // const { SimSpaceWeaverClient, UntagResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
29
29
  * const client = new SimSpaceWeaverClient(config);
30
- * const input = {
30
+ * const input = { // UntagResourceInput
31
31
  * ResourceArn: "STRING_VALUE", // required
32
- * TagKeys: [ // required
32
+ * TagKeys: [ // TagKeyList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -34,22 +34,32 @@ export interface SimulationAppPortMapping {
34
34
  }
35
35
  /**
36
36
  * @public
37
+ * @enum
37
38
  */
38
- export declare enum ClockStatus {
39
- STARTED = "STARTED",
40
- STARTING = "STARTING",
41
- STOPPED = "STOPPED",
42
- STOPPING = "STOPPING",
43
- UNKNOWN = "UNKNOWN"
44
- }
39
+ export declare const ClockStatus: {
40
+ readonly STARTED: "STARTED";
41
+ readonly STARTING: "STARTING";
42
+ readonly STOPPED: "STOPPED";
43
+ readonly STOPPING: "STOPPING";
44
+ readonly UNKNOWN: "UNKNOWN";
45
+ };
45
46
  /**
46
47
  * @public
47
48
  */
48
- export declare enum ClockTargetStatus {
49
- STARTED = "STARTED",
50
- STOPPED = "STOPPED",
51
- UNKNOWN = "UNKNOWN"
52
- }
49
+ export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const ClockTargetStatus: {
55
+ readonly STARTED: "STARTED";
56
+ readonly STOPPED: "STOPPED";
57
+ readonly UNKNOWN: "UNKNOWN";
58
+ };
59
+ /**
60
+ * @public
61
+ */
62
+ export type ClockTargetStatus = (typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
53
63
  /**
54
64
  * @public
55
65
  * <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
@@ -199,23 +209,33 @@ export interface LaunchOverrides {
199
209
  }
200
210
  /**
201
211
  * @public
212
+ * @enum
202
213
  */
203
- export declare enum SimulationAppStatus {
204
- ERROR = "ERROR",
205
- STARTED = "STARTED",
206
- STARTING = "STARTING",
207
- STOPPED = "STOPPED",
208
- STOPPING = "STOPPING",
209
- UNKNOWN = "UNKNOWN"
210
- }
214
+ export declare const SimulationAppStatus: {
215
+ readonly ERROR: "ERROR";
216
+ readonly STARTED: "STARTED";
217
+ readonly STARTING: "STARTING";
218
+ readonly STOPPED: "STOPPED";
219
+ readonly STOPPING: "STOPPING";
220
+ readonly UNKNOWN: "UNKNOWN";
221
+ };
211
222
  /**
212
223
  * @public
213
224
  */
214
- export declare enum SimulationAppTargetStatus {
215
- STARTED = "STARTED",
216
- STOPPED = "STOPPED",
217
- UNKNOWN = "UNKNOWN"
218
- }
225
+ export type SimulationAppStatus = (typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
226
+ /**
227
+ * @public
228
+ * @enum
229
+ */
230
+ export declare const SimulationAppTargetStatus: {
231
+ readonly STARTED: "STARTED";
232
+ readonly STOPPED: "STOPPED";
233
+ readonly UNKNOWN: "UNKNOWN";
234
+ };
235
+ /**
236
+ * @public
237
+ */
238
+ export type SimulationAppTargetStatus = (typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
219
239
  /**
220
240
  * @public
221
241
  */
@@ -278,13 +298,18 @@ export interface SimulationClock {
278
298
  }
279
299
  /**
280
300
  * @public
301
+ * @enum
281
302
  */
282
- export declare enum LifecycleManagementStrategy {
283
- ByRequest = "ByRequest",
284
- BySpatialSubdivision = "BySpatialSubdivision",
285
- PerWorker = "PerWorker",
286
- Unknown = "Unknown"
287
- }
303
+ export declare const LifecycleManagementStrategy: {
304
+ readonly ByRequest: "ByRequest";
305
+ readonly BySpatialSubdivision: "BySpatialSubdivision";
306
+ readonly PerWorker: "PerWorker";
307
+ readonly Unknown: "Unknown";
308
+ };
309
+ /**
310
+ * @public
311
+ */
312
+ export type LifecycleManagementStrategy = (typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
288
313
  /**
289
314
  * @public
290
315
  * <p>A collection of app instances that run the same executable app code and have the same
@@ -389,26 +414,36 @@ export interface S3Location {
389
414
  }
390
415
  /**
391
416
  * @public
417
+ * @enum
392
418
  */
393
- export declare enum SimulationStatus {
394
- DELETED = "DELETED",
395
- DELETING = "DELETING",
396
- FAILED = "FAILED",
397
- STARTED = "STARTED",
398
- STARTING = "STARTING",
399
- STOPPED = "STOPPED",
400
- STOPPING = "STOPPING",
401
- UNKNOWN = "UNKNOWN"
402
- }
419
+ export declare const SimulationStatus: {
420
+ readonly DELETED: "DELETED";
421
+ readonly DELETING: "DELETING";
422
+ readonly FAILED: "FAILED";
423
+ readonly STARTED: "STARTED";
424
+ readonly STARTING: "STARTING";
425
+ readonly STOPPED: "STOPPED";
426
+ readonly STOPPING: "STOPPING";
427
+ readonly UNKNOWN: "UNKNOWN";
428
+ };
403
429
  /**
404
430
  * @public
405
431
  */
406
- export declare enum SimulationTargetStatus {
407
- DELETED = "DELETED",
408
- STARTED = "STARTED",
409
- STOPPED = "STOPPED",
410
- UNKNOWN = "UNKNOWN"
411
- }
432
+ export type SimulationStatus = (typeof SimulationStatus)[keyof typeof SimulationStatus];
433
+ /**
434
+ * @public
435
+ * @enum
436
+ */
437
+ export declare const SimulationTargetStatus: {
438
+ readonly DELETED: "DELETED";
439
+ readonly STARTED: "STARTED";
440
+ readonly STOPPED: "STOPPED";
441
+ readonly UNKNOWN: "UNKNOWN";
442
+ };
443
+ /**
444
+ * @public
445
+ */
446
+ export type SimulationTargetStatus = (typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
412
447
  /**
413
448
  * @public
414
449
  */
@@ -12,18 +12,21 @@ export interface SimulationAppPortMapping {
12
12
  Declared?: number;
13
13
  Actual?: number;
14
14
  }
15
- export declare enum ClockStatus {
16
- STARTED = "STARTED",
17
- STARTING = "STARTING",
18
- STOPPED = "STOPPED",
19
- STOPPING = "STOPPING",
20
- UNKNOWN = "UNKNOWN",
21
- }
22
- export declare enum ClockTargetStatus {
23
- STARTED = "STARTED",
24
- STOPPED = "STOPPED",
25
- UNKNOWN = "UNKNOWN",
26
- }
15
+ export declare const ClockStatus: {
16
+ readonly STARTED: "STARTED";
17
+ readonly STARTING: "STARTING";
18
+ readonly STOPPED: "STOPPED";
19
+ readonly STOPPING: "STOPPING";
20
+ readonly UNKNOWN: "UNKNOWN";
21
+ };
22
+ export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
23
+ export declare const ClockTargetStatus: {
24
+ readonly STARTED: "STARTED";
25
+ readonly STOPPED: "STOPPED";
26
+ readonly UNKNOWN: "UNKNOWN";
27
+ };
28
+ export type ClockTargetStatus =
29
+ (typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
27
30
  export interface CloudWatchLogsLogGroup {
28
31
  LogGroupArn?: string;
29
32
  }
@@ -79,19 +82,23 @@ export interface SimulationAppEndpointInfo {
79
82
  export interface LaunchOverrides {
80
83
  LaunchCommands?: string[];
81
84
  }
82
- export declare enum SimulationAppStatus {
83
- ERROR = "ERROR",
84
- STARTED = "STARTED",
85
- STARTING = "STARTING",
86
- STOPPED = "STOPPED",
87
- STOPPING = "STOPPING",
88
- UNKNOWN = "UNKNOWN",
89
- }
90
- export declare enum SimulationAppTargetStatus {
91
- STARTED = "STARTED",
92
- STOPPED = "STOPPED",
93
- UNKNOWN = "UNKNOWN",
94
- }
85
+ export declare const SimulationAppStatus: {
86
+ readonly ERROR: "ERROR";
87
+ readonly STARTED: "STARTED";
88
+ readonly STARTING: "STARTING";
89
+ readonly STOPPED: "STOPPED";
90
+ readonly STOPPING: "STOPPING";
91
+ readonly UNKNOWN: "UNKNOWN";
92
+ };
93
+ export type SimulationAppStatus =
94
+ (typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
95
+ export declare const SimulationAppTargetStatus: {
96
+ readonly STARTED: "STARTED";
97
+ readonly STOPPED: "STOPPED";
98
+ readonly UNKNOWN: "UNKNOWN";
99
+ };
100
+ export type SimulationAppTargetStatus =
101
+ (typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
95
102
  export interface DescribeAppOutput {
96
103
  Name?: string;
97
104
  Simulation?: string;
@@ -109,12 +116,14 @@ export interface SimulationClock {
109
116
  Status?: ClockStatus | string;
110
117
  TargetStatus?: ClockTargetStatus | string;
111
118
  }
112
- export declare enum LifecycleManagementStrategy {
113
- ByRequest = "ByRequest",
114
- BySpatialSubdivision = "BySpatialSubdivision",
115
- PerWorker = "PerWorker",
116
- Unknown = "Unknown",
117
- }
119
+ export declare const LifecycleManagementStrategy: {
120
+ readonly ByRequest: "ByRequest";
121
+ readonly BySpatialSubdivision: "BySpatialSubdivision";
122
+ readonly PerWorker: "PerWorker";
123
+ readonly Unknown: "Unknown";
124
+ };
125
+ export type LifecycleManagementStrategy =
126
+ (typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
118
127
  export interface Domain {
119
128
  Name?: string;
120
129
  Lifecycle?: LifecycleManagementStrategy | string;
@@ -133,22 +142,26 @@ export interface S3Location {
133
142
  BucketName?: string;
134
143
  ObjectKey?: string;
135
144
  }
136
- export declare enum SimulationStatus {
137
- DELETED = "DELETED",
138
- DELETING = "DELETING",
139
- FAILED = "FAILED",
140
- STARTED = "STARTED",
141
- STARTING = "STARTING",
142
- STOPPED = "STOPPED",
143
- STOPPING = "STOPPING",
144
- UNKNOWN = "UNKNOWN",
145
- }
146
- export declare enum SimulationTargetStatus {
147
- DELETED = "DELETED",
148
- STARTED = "STARTED",
149
- STOPPED = "STOPPED",
150
- UNKNOWN = "UNKNOWN",
151
- }
145
+ export declare const SimulationStatus: {
146
+ readonly DELETED: "DELETED";
147
+ readonly DELETING: "DELETING";
148
+ readonly FAILED: "FAILED";
149
+ readonly STARTED: "STARTED";
150
+ readonly STARTING: "STARTING";
151
+ readonly STOPPED: "STOPPED";
152
+ readonly STOPPING: "STOPPING";
153
+ readonly UNKNOWN: "UNKNOWN";
154
+ };
155
+ export type SimulationStatus =
156
+ (typeof SimulationStatus)[keyof typeof SimulationStatus];
157
+ export declare const SimulationTargetStatus: {
158
+ readonly DELETED: "DELETED";
159
+ readonly STARTED: "STARTED";
160
+ readonly STOPPED: "STOPPED";
161
+ readonly UNKNOWN: "UNKNOWN";
162
+ };
163
+ export type SimulationTargetStatus =
164
+ (typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
152
165
  export interface DescribeSimulationOutput {
153
166
  Name?: string;
154
167
  ExecutionId?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-simspaceweaver",
3
3
  "description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "@types/uuid": "^8.3.0",