@aws-sdk/client-simspaceweaver 3.687.0 → 3.692.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.
@@ -7,7 +7,7 @@ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWea
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -24,7 +24,7 @@ export interface SimulationAppPortMapping {
24
24
  * app should bind to the <code>Declared</code> port.</p>
25
25
  * @public
26
26
  */
27
- Declared?: number;
27
+ Declared?: number | undefined;
28
28
  /**
29
29
  * <p>The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port
30
30
  * number when the app starts. SimSpace Weaver maps the <code>Declared</code> port to the
@@ -32,7 +32,7 @@ export interface SimulationAppPortMapping {
32
32
  * and the <code>Actual</code> port number.</p>
33
33
  * @public
34
34
  */
35
- Actual?: number;
35
+ Actual?: number | undefined;
36
36
  }
37
37
  /**
38
38
  * @public
@@ -75,7 +75,7 @@ export interface CloudWatchLogsLogGroup {
75
75
  * groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
76
76
  * @public
77
77
  */
78
- LogGroupArn?: string;
78
+ LogGroupArn?: string | undefined;
79
79
  }
80
80
  /**
81
81
  * <p/>
@@ -84,7 +84,7 @@ export interface CloudWatchLogsLogGroup {
84
84
  export declare class ConflictException extends __BaseException {
85
85
  readonly name: "ConflictException";
86
86
  readonly $fault: "client";
87
- Message?: string;
87
+ Message?: string | undefined;
88
88
  /**
89
89
  * @internal
90
90
  */
@@ -108,7 +108,7 @@ export interface S3Destination {
108
108
  * in the <i>Amazon Simple Storage Service User Guide</i>.</p>
109
109
  * @public
110
110
  */
111
- ObjectKeyPrefix?: string;
111
+ ObjectKeyPrefix?: string | undefined;
112
112
  }
113
113
  /**
114
114
  * @public
@@ -138,7 +138,7 @@ export interface CreateSnapshotOutput {
138
138
  export declare class InternalServerException extends __BaseException {
139
139
  readonly name: "InternalServerException";
140
140
  readonly $fault: "server";
141
- Message?: string;
141
+ Message?: string | undefined;
142
142
  /**
143
143
  * @internal
144
144
  */
@@ -151,7 +151,7 @@ export declare class InternalServerException extends __BaseException {
151
151
  export declare class ResourceNotFoundException extends __BaseException {
152
152
  readonly name: "ResourceNotFoundException";
153
153
  readonly $fault: "client";
154
- Message?: string;
154
+ Message?: string | undefined;
155
155
  /**
156
156
  * @internal
157
157
  */
@@ -164,7 +164,7 @@ export declare class ResourceNotFoundException extends __BaseException {
164
164
  export declare class ValidationException extends __BaseException {
165
165
  readonly name: "ValidationException";
166
166
  readonly $fault: "client";
167
- Message?: string;
167
+ Message?: string | undefined;
168
168
  /**
169
169
  * @internal
170
170
  */
@@ -242,13 +242,13 @@ export interface SimulationAppEndpointInfo {
242
242
  * app starts.</p>
243
243
  * @public
244
244
  */
245
- Address?: string;
245
+ Address?: string | undefined;
246
246
  /**
247
247
  * <p>The inbound TCP/UDP port numbers of the app. The combination of an IP address and
248
248
  * a port number form a network endpoint.</p>
249
249
  * @public
250
250
  */
251
- IngressPortMappings?: SimulationAppPortMapping[];
251
+ IngressPortMappings?: SimulationAppPortMapping[] | undefined;
252
252
  }
253
253
  /**
254
254
  * <p>Options that apply when the app starts. These options override default behavior.</p>
@@ -260,7 +260,7 @@ export interface LaunchOverrides {
260
260
  * configured in the simulation schema.</p>
261
261
  * @public
262
262
  */
263
- LaunchCommands?: string[];
263
+ LaunchCommands?: string[] | undefined;
264
264
  }
265
265
  /**
266
266
  * @public
@@ -299,42 +299,42 @@ export interface DescribeAppOutput {
299
299
  * <p>The name of the app.</p>
300
300
  * @public
301
301
  */
302
- Name?: string;
302
+ Name?: string | undefined;
303
303
  /**
304
304
  * <p>The name of the simulation of the app.</p>
305
305
  * @public
306
306
  */
307
- Simulation?: string;
307
+ Simulation?: string | undefined;
308
308
  /**
309
309
  * <p>The name of the domain of the app.</p>
310
310
  * @public
311
311
  */
312
- Domain?: string;
312
+ Domain?: string | undefined;
313
313
  /**
314
314
  * <p>The current lifecycle state of the custom app.</p>
315
315
  * @public
316
316
  */
317
- Status?: SimulationAppStatus;
317
+ Status?: SimulationAppStatus | undefined;
318
318
  /**
319
319
  * <p>The desired lifecycle state of the custom app.</p>
320
320
  * @public
321
321
  */
322
- TargetStatus?: SimulationAppTargetStatus;
322
+ TargetStatus?: SimulationAppTargetStatus | undefined;
323
323
  /**
324
324
  * <p>Options that apply when the app starts. These options override default behavior.</p>
325
325
  * @public
326
326
  */
327
- LaunchOverrides?: LaunchOverrides;
327
+ LaunchOverrides?: LaunchOverrides | undefined;
328
328
  /**
329
329
  * <p>The description of the app.</p>
330
330
  * @public
331
331
  */
332
- Description?: string;
332
+ Description?: string | undefined;
333
333
  /**
334
334
  * <p>Information about the network endpoint for the custom app. You can use the endpoint to connect to the custom app.</p>
335
335
  * @public
336
336
  */
337
- EndpointInfo?: SimulationAppEndpointInfo;
337
+ EndpointInfo?: SimulationAppEndpointInfo | undefined;
338
338
  }
339
339
  /**
340
340
  * @public
@@ -355,12 +355,12 @@ export interface SimulationClock {
355
355
  * <p>The current status of the simulation clock.</p>
356
356
  * @public
357
357
  */
358
- Status?: ClockStatus;
358
+ Status?: ClockStatus | undefined;
359
359
  /**
360
360
  * <p>The desired status of the simulation clock.</p>
361
361
  * @public
362
362
  */
363
- TargetStatus?: ClockTargetStatus;
363
+ TargetStatus?: ClockTargetStatus | undefined;
364
364
  }
365
365
  /**
366
366
  * @public
@@ -388,7 +388,7 @@ export interface Domain {
388
388
  * <p>The name of the domain.</p>
389
389
  * @public
390
390
  */
391
- Name?: string;
391
+ Name?: string | undefined;
392
392
  /**
393
393
  * <p>The type of lifecycle management for apps in the domain. Indicates whether apps in this
394
394
  * domain are <i>managed</i> (SimSpace Weaver starts and stops the apps) or
@@ -415,7 +415,7 @@ export interface Domain {
415
415
  * </ul>
416
416
  * @public
417
417
  */
418
- Lifecycle?: LifecycleManagementStrategy;
418
+ Lifecycle?: LifecycleManagementStrategy | undefined;
419
419
  }
420
420
  /**
421
421
  * <p>A collection of additional state information, such as
@@ -428,7 +428,7 @@ export interface LiveSimulationState {
428
428
  * in the <i>SimSpace Weaver User Guide</i>.</p>
429
429
  * @public
430
430
  */
431
- Domains?: Domain[];
431
+ Domains?: Domain[] | undefined;
432
432
  /**
433
433
  * <p>A list of simulation clocks.</p>
434
434
  * <note>
@@ -436,7 +436,7 @@ export interface LiveSimulationState {
436
436
  * </note>
437
437
  * @public
438
438
  */
439
- Clocks?: SimulationClock[];
439
+ Clocks?: SimulationClock[] | undefined;
440
440
  }
441
441
  /**
442
442
  * <p>The location where SimSpace Weaver sends simulation log data.</p>
@@ -448,7 +448,7 @@ export interface LogDestination {
448
448
  * groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
449
449
  * @public
450
450
  */
451
- CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
451
+ CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup | undefined;
452
452
  }
453
453
  /**
454
454
  * <p>The logging configuration for a simulation.</p>
@@ -459,7 +459,7 @@ export interface LoggingConfiguration {
459
459
  * <p>A list of the locations where SimSpace Weaver sends simulation log data.</p>
460
460
  * @public
461
461
  */
462
- Destinations?: LogDestination[];
462
+ Destinations?: LogDestination[] | undefined;
463
463
  }
464
464
  /**
465
465
  * <p>A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app .zip
@@ -526,23 +526,23 @@ export interface DescribeSimulationOutput {
526
526
  * <p>The name of the simulation.</p>
527
527
  * @public
528
528
  */
529
- Name?: string;
529
+ Name?: string | undefined;
530
530
  /**
531
531
  * <p>A universally unique identifier (UUID) for this simulation.</p>
532
532
  * @public
533
533
  */
534
- ExecutionId?: string;
534
+ ExecutionId?: string | undefined;
535
535
  /**
536
536
  * <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>
537
537
  * in the <i>Amazon Web Services General Reference</i>.</p>
538
538
  * @public
539
539
  */
540
- Arn?: string;
540
+ Arn?: string | undefined;
541
541
  /**
542
542
  * <p>The description of the simulation.</p>
543
543
  * @public
544
544
  */
545
- Description?: string;
545
+ Description?: string | undefined;
546
546
  /**
547
547
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
548
548
  * 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>
@@ -551,23 +551,23 @@ export interface DescribeSimulationOutput {
551
551
  * <i>Identity and Access Management User Guide</i>.</p>
552
552
  * @public
553
553
  */
554
- RoleArn?: string;
554
+ RoleArn?: string | undefined;
555
555
  /**
556
556
  * <p>The time when the simulation was created, expressed as the
557
557
  * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
558
558
  * @public
559
559
  */
560
- CreationTime?: Date;
560
+ CreationTime?: Date | undefined;
561
561
  /**
562
562
  * <p>The current lifecycle state of the simulation.</p>
563
563
  * @public
564
564
  */
565
- Status?: SimulationStatus;
565
+ Status?: SimulationStatus | undefined;
566
566
  /**
567
567
  * <p>The desired lifecycle state of the simulation.</p>
568
568
  * @public
569
569
  */
570
- TargetStatus?: SimulationTargetStatus;
570
+ TargetStatus?: SimulationTargetStatus | undefined;
571
571
  /**
572
572
  * <p>The location of the simulation schema in Amazon Simple Storage Service (Amazon S3).
573
573
  * For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
@@ -575,7 +575,7 @@ export interface DescribeSimulationOutput {
575
575
  * </a>.</p>
576
576
  * @public
577
577
  */
578
- SchemaS3Location?: S3Location;
578
+ SchemaS3Location?: S3Location | undefined;
579
579
  /**
580
580
  * @deprecated
581
581
  *
@@ -583,18 +583,18 @@ export interface DescribeSimulationOutput {
583
583
  * schema.</p>
584
584
  * @public
585
585
  */
586
- SchemaError?: string;
586
+ SchemaError?: string | undefined;
587
587
  /**
588
588
  * <p>Settings that control how SimSpace Weaver handles your simulation log data.</p>
589
589
  * @public
590
590
  */
591
- LoggingConfiguration?: LoggingConfiguration;
591
+ LoggingConfiguration?: LoggingConfiguration | undefined;
592
592
  /**
593
593
  * <p>A collection of additional state information, such as
594
594
  * domain and clock configuration.</p>
595
595
  * @public
596
596
  */
597
- LiveSimulationState?: LiveSimulationState;
597
+ LiveSimulationState?: LiveSimulationState | undefined;
598
598
  /**
599
599
  * <p>The maximum running time of the simulation,
600
600
  * specified as a number of minutes (m or M), hours (h or H), or days (d or D). The simulation
@@ -603,7 +603,7 @@ export interface DescribeSimulationOutput {
603
603
  * simulation immediately transition to <code>Stopping</code> as soon as it reaches <code>Started</code>.</p>
604
604
  * @public
605
605
  */
606
- MaximumDuration?: string;
606
+ MaximumDuration?: string | undefined;
607
607
  /**
608
608
  * <p>A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app .zip
609
609
  * files and schema file. For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
@@ -611,12 +611,12 @@ export interface DescribeSimulationOutput {
611
611
  * </a>.</p>
612
612
  * @public
613
613
  */
614
- SnapshotS3Location?: S3Location;
614
+ SnapshotS3Location?: S3Location | undefined;
615
615
  /**
616
616
  * <p>An error message that SimSpace Weaver returns only if a problem occurs when the simulation is in the <code>STARTING</code> state.</p>
617
617
  * @public
618
618
  */
619
- StartError?: string;
619
+ StartError?: string | undefined;
620
620
  }
621
621
  /**
622
622
  * @public
@@ -631,12 +631,12 @@ export interface ListAppsInput {
631
631
  * <p>The name of the domain that you want to list apps for.</p>
632
632
  * @public
633
633
  */
634
- Domain?: string;
634
+ Domain?: string | undefined;
635
635
  /**
636
636
  * <p>The maximum number of apps to list.</p>
637
637
  * @public
638
638
  */
639
- MaxResults?: number;
639
+ MaxResults?: number | undefined;
640
640
  /**
641
641
  * <p>If SimSpace Weaver returns <code>nextToken</code>, then there are more results available.
642
642
  * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
@@ -645,7 +645,7 @@ export interface ListAppsInput {
645
645
  * If you provide a token that isn't valid, then you receive an <i>HTTP 400 ValidationException</i> error.</p>
646
646
  * @public
647
647
  */
648
- NextToken?: string;
648
+ NextToken?: string | undefined;
649
649
  }
650
650
  /**
651
651
  * <p>A collection of metadata about the app.</p>
@@ -656,28 +656,28 @@ export interface SimulationAppMetadata {
656
656
  * <p>The name of the app.</p>
657
657
  * @public
658
658
  */
659
- Name?: string;
659
+ Name?: string | undefined;
660
660
  /**
661
661
  * <p>The name of the simulation of the app.</p>
662
662
  * @public
663
663
  */
664
- Simulation?: string;
664
+ Simulation?: string | undefined;
665
665
  /**
666
666
  * <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#what-is_key-concepts_domains">Key concepts: Domains</a>
667
667
  * in the <i>SimSpace Weaver User Guide</i>.</p>
668
668
  * @public
669
669
  */
670
- Domain?: string;
670
+ Domain?: string | undefined;
671
671
  /**
672
672
  * <p>The current status of the app.</p>
673
673
  * @public
674
674
  */
675
- Status?: SimulationAppStatus;
675
+ Status?: SimulationAppStatus | undefined;
676
676
  /**
677
677
  * <p>The desired status of the app.</p>
678
678
  * @public
679
679
  */
680
- TargetStatus?: SimulationAppTargetStatus;
680
+ TargetStatus?: SimulationAppTargetStatus | undefined;
681
681
  }
682
682
  /**
683
683
  * @public
@@ -687,7 +687,7 @@ export interface ListAppsOutput {
687
687
  * <p>The list of apps for the given simulation and domain.</p>
688
688
  * @public
689
689
  */
690
- Apps?: SimulationAppMetadata[];
690
+ Apps?: SimulationAppMetadata[] | undefined;
691
691
  /**
692
692
  * <p>If SimSpace Weaver returns <code>nextToken</code>, then there are more results available.
693
693
  * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
@@ -696,7 +696,7 @@ export interface ListAppsOutput {
696
696
  * If you provide a token that isn't valid, then you receive an <i>HTTP 400 ValidationException</i> error.</p>
697
697
  * @public
698
698
  */
699
- NextToken?: string;
699
+ NextToken?: string | undefined;
700
700
  }
701
701
  /**
702
702
  * @public
@@ -706,7 +706,7 @@ export interface ListSimulationsInput {
706
706
  * <p>The maximum number of simulations to list.</p>
707
707
  * @public
708
708
  */
709
- MaxResults?: number;
709
+ MaxResults?: number | undefined;
710
710
  /**
711
711
  * <p>If SimSpace Weaver returns <code>nextToken</code>, then there are more results available.
712
712
  * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
@@ -715,7 +715,7 @@ export interface ListSimulationsInput {
715
715
  * If you provide a token that isn't valid, then you receive an <i>HTTP 400 ValidationException</i> error.</p>
716
716
  * @public
717
717
  */
718
- NextToken?: string;
718
+ NextToken?: string | undefined;
719
719
  }
720
720
  /**
721
721
  * <p>A collection of data about the simulation.</p>
@@ -726,29 +726,29 @@ export interface SimulationMetadata {
726
726
  * <p>The name of the simulation.</p>
727
727
  * @public
728
728
  */
729
- Name?: string;
729
+ Name?: string | undefined;
730
730
  /**
731
731
  * <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>
732
732
  * in the <i>Amazon Web Services General Reference</i>.</p>
733
733
  * @public
734
734
  */
735
- Arn?: string;
735
+ Arn?: string | undefined;
736
736
  /**
737
737
  * <p>The time when the simulation was created, expressed as the
738
738
  * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
739
739
  * @public
740
740
  */
741
- CreationTime?: Date;
741
+ CreationTime?: Date | undefined;
742
742
  /**
743
743
  * <p>The current status of the simulation.</p>
744
744
  * @public
745
745
  */
746
- Status?: SimulationStatus;
746
+ Status?: SimulationStatus | undefined;
747
747
  /**
748
748
  * <p>The desired status of the simulation.</p>
749
749
  * @public
750
750
  */
751
- TargetStatus?: SimulationTargetStatus;
751
+ TargetStatus?: SimulationTargetStatus | undefined;
752
752
  }
753
753
  /**
754
754
  * @public
@@ -758,7 +758,7 @@ export interface ListSimulationsOutput {
758
758
  * <p>The list of simulations.</p>
759
759
  * @public
760
760
  */
761
- Simulations?: SimulationMetadata[];
761
+ Simulations?: SimulationMetadata[] | undefined;
762
762
  /**
763
763
  * <p>If SimSpace Weaver returns <code>nextToken</code>, then there are more results available.
764
764
  * The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page,
@@ -767,7 +767,7 @@ export interface ListSimulationsOutput {
767
767
  * If you provide a token that isn't valid, then you receive an <i>HTTP 400 ValidationException</i> error.</p>
768
768
  * @public
769
769
  */
770
- NextToken?: string;
770
+ NextToken?: string | undefined;
771
771
  }
772
772
  /**
773
773
  * @public
@@ -788,7 +788,7 @@ export interface ListTagsForResourceOutput {
788
788
  * <p>The list of tags for the resource.</p>
789
789
  * @public
790
790
  */
791
- Tags?: Record<string, string>;
791
+ Tags?: Record<string, string> | undefined;
792
792
  }
793
793
  /**
794
794
  * <p/>
@@ -797,7 +797,7 @@ export interface ListTagsForResourceOutput {
797
797
  export declare class ServiceQuotaExceededException extends __BaseException {
798
798
  readonly name: "ServiceQuotaExceededException";
799
799
  readonly $fault: "client";
800
- Message?: string;
800
+ Message?: string | undefined;
801
801
  /**
802
802
  * @internal
803
803
  */
@@ -813,7 +813,7 @@ export interface StartAppInput {
813
813
  * <i>idempotency token</i>. A <code>ClientToken</code> expires after 24 hours.</p>
814
814
  * @public
815
815
  */
816
- ClientToken?: string;
816
+ ClientToken?: string | undefined;
817
817
  /**
818
818
  * <p>The name of the simulation of the app.</p>
819
819
  * @public
@@ -833,12 +833,12 @@ export interface StartAppInput {
833
833
  * <p>The description of the app.</p>
834
834
  * @public
835
835
  */
836
- Description?: string;
836
+ Description?: string | undefined;
837
837
  /**
838
838
  * <p>Options that apply when the app starts. These options override default behavior.</p>
839
839
  * @public
840
840
  */
841
- LaunchOverrides?: LaunchOverrides;
841
+ LaunchOverrides?: LaunchOverrides | undefined;
842
842
  }
843
843
  /**
844
844
  * @public
@@ -848,17 +848,17 @@ export interface StartAppOutput {
848
848
  * <p>The name of the app.</p>
849
849
  * @public
850
850
  */
851
- Name?: string;
851
+ Name?: string | undefined;
852
852
  /**
853
853
  * <p>The name of the domain of the app.</p>
854
854
  * @public
855
855
  */
856
- Domain?: string;
856
+ Domain?: string | undefined;
857
857
  /**
858
858
  * <p>The name of the simulation of the app.</p>
859
859
  * @public
860
860
  */
861
- Simulation?: string;
861
+ Simulation?: string | undefined;
862
862
  }
863
863
  /**
864
864
  * @public
@@ -885,7 +885,7 @@ export interface StartSimulationInput {
885
885
  * <i>idempotency token</i>. A <code>ClientToken</code> expires after 24 hours.</p>
886
886
  * @public
887
887
  */
888
- ClientToken?: string;
888
+ ClientToken?: string | undefined;
889
889
  /**
890
890
  * <p>The name of the simulation.</p>
891
891
  * @public
@@ -895,7 +895,7 @@ export interface StartSimulationInput {
895
895
  * <p>The description of the simulation.</p>
896
896
  * @public
897
897
  */
898
- Description?: string;
898
+ Description?: string | undefined;
899
899
  /**
900
900
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
901
901
  * 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>
@@ -914,7 +914,7 @@ export interface StartSimulationInput {
914
914
  * <p>If you provide a <code>SchemaS3Location</code> then you can't provide a <code>SnapshotS3Location</code>.</p>
915
915
  * @public
916
916
  */
917
- SchemaS3Location?: S3Location;
917
+ SchemaS3Location?: S3Location | undefined;
918
918
  /**
919
919
  * <p>The maximum running time of the simulation,
920
920
  * specified as a number of minutes (m or M), hours (h or H), or days (d or D). The simulation
@@ -923,13 +923,13 @@ export interface StartSimulationInput {
923
923
  * simulation immediately transition to <code>Stopping</code> as soon as it reaches <code>Started</code>.</p>
924
924
  * @public
925
925
  */
926
- MaximumDuration?: string;
926
+ MaximumDuration?: string | undefined;
927
927
  /**
928
928
  * <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
929
929
  * <i>Amazon Web Services General Reference</i>.</p>
930
930
  * @public
931
931
  */
932
- Tags?: Record<string, string>;
932
+ Tags?: Record<string, string> | undefined;
933
933
  /**
934
934
  * <p>The location of the snapshot .zip file in Amazon Simple Storage Service (Amazon S3).
935
935
  * For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
@@ -940,7 +940,7 @@ export interface StartSimulationInput {
940
940
  * <p>If you provide a <code>SnapshotS3Location</code> then you can't provide a <code>SchemaS3Location</code>.</p>
941
941
  * @public
942
942
  */
943
- SnapshotS3Location?: S3Location;
943
+ SnapshotS3Location?: S3Location | undefined;
944
944
  }
945
945
  /**
946
946
  * @public
@@ -951,18 +951,18 @@ export interface StartSimulationOutput {
951
951
  * in the <i>Amazon Web Services General Reference</i>.</p>
952
952
  * @public
953
953
  */
954
- Arn?: string;
954
+ Arn?: string | undefined;
955
955
  /**
956
956
  * <p>A universally unique identifier (UUID) for this simulation.</p>
957
957
  * @public
958
958
  */
959
- ExecutionId?: string;
959
+ ExecutionId?: string | undefined;
960
960
  /**
961
961
  * <p>The time when the simulation was created, expressed as the
962
962
  * number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).</p>
963
963
  * @public
964
964
  */
965
- CreationTime?: Date;
965
+ CreationTime?: Date | undefined;
966
966
  }
967
967
  /**
968
968
  * @public
@@ -1048,7 +1048,7 @@ export interface TagResourceOutput {
1048
1048
  export declare class TooManyTagsException extends __BaseException {
1049
1049
  readonly name: "TooManyTagsException";
1050
1050
  readonly $fault: "client";
1051
- Message?: string;
1051
+ Message?: string | undefined;
1052
1052
  /**
1053
1053
  * @internal
1054
1054
  */
@@ -3,14 +3,14 @@ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWea
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
11
  export interface SimulationAppPortMapping {
12
- Declared?: number;
13
- Actual?: number;
12
+ Declared?: number | undefined;
13
+ Actual?: number | undefined;
14
14
  }
15
15
  export declare const ClockStatus: {
16
16
  readonly STARTED: "STARTED";
@@ -28,17 +28,17 @@ export declare const ClockTargetStatus: {
28
28
  export type ClockTargetStatus =
29
29
  (typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
30
30
  export interface CloudWatchLogsLogGroup {
31
- LogGroupArn?: string;
31
+ LogGroupArn?: string | undefined;
32
32
  }
33
33
  export declare class ConflictException extends __BaseException {
34
34
  readonly name: "ConflictException";
35
35
  readonly $fault: "client";
36
- Message?: string;
36
+ Message?: string | undefined;
37
37
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
38
38
  }
39
39
  export interface S3Destination {
40
40
  BucketName: string | undefined;
41
- ObjectKeyPrefix?: string;
41
+ ObjectKeyPrefix?: string | undefined;
42
42
  }
43
43
  export interface CreateSnapshotInput {
44
44
  Simulation: string | undefined;
@@ -48,7 +48,7 @@ export interface CreateSnapshotOutput {}
48
48
  export declare class InternalServerException extends __BaseException {
49
49
  readonly name: "InternalServerException";
50
50
  readonly $fault: "server";
51
- Message?: string;
51
+ Message?: string | undefined;
52
52
  constructor(
53
53
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
54
54
  );
@@ -56,7 +56,7 @@ export declare class InternalServerException extends __BaseException {
56
56
  export declare class ResourceNotFoundException extends __BaseException {
57
57
  readonly name: "ResourceNotFoundException";
58
58
  readonly $fault: "client";
59
- Message?: string;
59
+ Message?: string | undefined;
60
60
  constructor(
61
61
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
62
62
  );
@@ -64,7 +64,7 @@ export declare class ResourceNotFoundException extends __BaseException {
64
64
  export declare class ValidationException extends __BaseException {
65
65
  readonly name: "ValidationException";
66
66
  readonly $fault: "client";
67
- Message?: string;
67
+ Message?: string | undefined;
68
68
  constructor(
69
69
  opts: __ExceptionOptionType<ValidationException, __BaseException>
70
70
  );
@@ -85,11 +85,11 @@ export interface DescribeAppInput {
85
85
  App: string | undefined;
86
86
  }
87
87
  export interface SimulationAppEndpointInfo {
88
- Address?: string;
89
- IngressPortMappings?: SimulationAppPortMapping[];
88
+ Address?: string | undefined;
89
+ IngressPortMappings?: SimulationAppPortMapping[] | undefined;
90
90
  }
91
91
  export interface LaunchOverrides {
92
- LaunchCommands?: string[];
92
+ LaunchCommands?: string[] | undefined;
93
93
  }
94
94
  export declare const SimulationAppStatus: {
95
95
  readonly ERROR: "ERROR";
@@ -109,21 +109,21 @@ export declare const SimulationAppTargetStatus: {
109
109
  export type SimulationAppTargetStatus =
110
110
  (typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
111
111
  export interface DescribeAppOutput {
112
- Name?: string;
113
- Simulation?: string;
114
- Domain?: string;
115
- Status?: SimulationAppStatus;
116
- TargetStatus?: SimulationAppTargetStatus;
117
- LaunchOverrides?: LaunchOverrides;
118
- Description?: string;
119
- EndpointInfo?: SimulationAppEndpointInfo;
112
+ Name?: string | undefined;
113
+ Simulation?: string | undefined;
114
+ Domain?: string | undefined;
115
+ Status?: SimulationAppStatus | undefined;
116
+ TargetStatus?: SimulationAppTargetStatus | undefined;
117
+ LaunchOverrides?: LaunchOverrides | undefined;
118
+ Description?: string | undefined;
119
+ EndpointInfo?: SimulationAppEndpointInfo | undefined;
120
120
  }
121
121
  export interface DescribeSimulationInput {
122
122
  Simulation: string | undefined;
123
123
  }
124
124
  export interface SimulationClock {
125
- Status?: ClockStatus;
126
- TargetStatus?: ClockTargetStatus;
125
+ Status?: ClockStatus | undefined;
126
+ TargetStatus?: ClockTargetStatus | undefined;
127
127
  }
128
128
  export declare const LifecycleManagementStrategy: {
129
129
  readonly ByRequest: "ByRequest";
@@ -134,18 +134,18 @@ export declare const LifecycleManagementStrategy: {
134
134
  export type LifecycleManagementStrategy =
135
135
  (typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
136
136
  export interface Domain {
137
- Name?: string;
138
- Lifecycle?: LifecycleManagementStrategy;
137
+ Name?: string | undefined;
138
+ Lifecycle?: LifecycleManagementStrategy | undefined;
139
139
  }
140
140
  export interface LiveSimulationState {
141
- Domains?: Domain[];
142
- Clocks?: SimulationClock[];
141
+ Domains?: Domain[] | undefined;
142
+ Clocks?: SimulationClock[] | undefined;
143
143
  }
144
144
  export interface LogDestination {
145
- CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
145
+ CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup | undefined;
146
146
  }
147
147
  export interface LoggingConfiguration {
148
- Destinations?: LogDestination[];
148
+ Destinations?: LogDestination[] | undefined;
149
149
  }
150
150
  export interface S3Location {
151
151
  BucketName: string | undefined;
@@ -173,99 +173,99 @@ export declare const SimulationTargetStatus: {
173
173
  export type SimulationTargetStatus =
174
174
  (typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
175
175
  export interface DescribeSimulationOutput {
176
- Name?: string;
177
- ExecutionId?: string;
178
- Arn?: string;
179
- Description?: string;
180
- RoleArn?: string;
181
- CreationTime?: Date;
182
- Status?: SimulationStatus;
183
- TargetStatus?: SimulationTargetStatus;
184
- SchemaS3Location?: S3Location;
185
- SchemaError?: string;
186
- LoggingConfiguration?: LoggingConfiguration;
187
- LiveSimulationState?: LiveSimulationState;
188
- MaximumDuration?: string;
189
- SnapshotS3Location?: S3Location;
190
- StartError?: string;
176
+ Name?: string | undefined;
177
+ ExecutionId?: string | undefined;
178
+ Arn?: string | undefined;
179
+ Description?: string | undefined;
180
+ RoleArn?: string | undefined;
181
+ CreationTime?: Date | undefined;
182
+ Status?: SimulationStatus | undefined;
183
+ TargetStatus?: SimulationTargetStatus | undefined;
184
+ SchemaS3Location?: S3Location | undefined;
185
+ SchemaError?: string | undefined;
186
+ LoggingConfiguration?: LoggingConfiguration | undefined;
187
+ LiveSimulationState?: LiveSimulationState | undefined;
188
+ MaximumDuration?: string | undefined;
189
+ SnapshotS3Location?: S3Location | undefined;
190
+ StartError?: string | undefined;
191
191
  }
192
192
  export interface ListAppsInput {
193
193
  Simulation: string | undefined;
194
- Domain?: string;
195
- MaxResults?: number;
196
- NextToken?: string;
194
+ Domain?: string | undefined;
195
+ MaxResults?: number | undefined;
196
+ NextToken?: string | undefined;
197
197
  }
198
198
  export interface SimulationAppMetadata {
199
- Name?: string;
200
- Simulation?: string;
201
- Domain?: string;
202
- Status?: SimulationAppStatus;
203
- TargetStatus?: SimulationAppTargetStatus;
199
+ Name?: string | undefined;
200
+ Simulation?: string | undefined;
201
+ Domain?: string | undefined;
202
+ Status?: SimulationAppStatus | undefined;
203
+ TargetStatus?: SimulationAppTargetStatus | undefined;
204
204
  }
205
205
  export interface ListAppsOutput {
206
- Apps?: SimulationAppMetadata[];
207
- NextToken?: string;
206
+ Apps?: SimulationAppMetadata[] | undefined;
207
+ NextToken?: string | undefined;
208
208
  }
209
209
  export interface ListSimulationsInput {
210
- MaxResults?: number;
211
- NextToken?: string;
210
+ MaxResults?: number | undefined;
211
+ NextToken?: string | undefined;
212
212
  }
213
213
  export interface SimulationMetadata {
214
- Name?: string;
215
- Arn?: string;
216
- CreationTime?: Date;
217
- Status?: SimulationStatus;
218
- TargetStatus?: SimulationTargetStatus;
214
+ Name?: string | undefined;
215
+ Arn?: string | undefined;
216
+ CreationTime?: Date | undefined;
217
+ Status?: SimulationStatus | undefined;
218
+ TargetStatus?: SimulationTargetStatus | undefined;
219
219
  }
220
220
  export interface ListSimulationsOutput {
221
- Simulations?: SimulationMetadata[];
222
- NextToken?: string;
221
+ Simulations?: SimulationMetadata[] | undefined;
222
+ NextToken?: string | undefined;
223
223
  }
224
224
  export interface ListTagsForResourceInput {
225
225
  ResourceArn: string | undefined;
226
226
  }
227
227
  export interface ListTagsForResourceOutput {
228
- Tags?: Record<string, string>;
228
+ Tags?: Record<string, string> | undefined;
229
229
  }
230
230
  export declare class ServiceQuotaExceededException extends __BaseException {
231
231
  readonly name: "ServiceQuotaExceededException";
232
232
  readonly $fault: "client";
233
- Message?: string;
233
+ Message?: string | undefined;
234
234
  constructor(
235
235
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
236
236
  );
237
237
  }
238
238
  export interface StartAppInput {
239
- ClientToken?: string;
239
+ ClientToken?: string | undefined;
240
240
  Simulation: string | undefined;
241
241
  Domain: string | undefined;
242
242
  Name: string | undefined;
243
- Description?: string;
244
- LaunchOverrides?: LaunchOverrides;
243
+ Description?: string | undefined;
244
+ LaunchOverrides?: LaunchOverrides | undefined;
245
245
  }
246
246
  export interface StartAppOutput {
247
- Name?: string;
248
- Domain?: string;
249
- Simulation?: string;
247
+ Name?: string | undefined;
248
+ Domain?: string | undefined;
249
+ Simulation?: string | undefined;
250
250
  }
251
251
  export interface StartClockInput {
252
252
  Simulation: string | undefined;
253
253
  }
254
254
  export interface StartClockOutput {}
255
255
  export interface StartSimulationInput {
256
- ClientToken?: string;
256
+ ClientToken?: string | undefined;
257
257
  Name: string | undefined;
258
- Description?: string;
258
+ Description?: string | undefined;
259
259
  RoleArn: string | undefined;
260
- SchemaS3Location?: S3Location;
261
- MaximumDuration?: string;
262
- Tags?: Record<string, string>;
263
- SnapshotS3Location?: S3Location;
260
+ SchemaS3Location?: S3Location | undefined;
261
+ MaximumDuration?: string | undefined;
262
+ Tags?: Record<string, string> | undefined;
263
+ SnapshotS3Location?: S3Location | undefined;
264
264
  }
265
265
  export interface StartSimulationOutput {
266
- Arn?: string;
267
- ExecutionId?: string;
268
- CreationTime?: Date;
266
+ Arn?: string | undefined;
267
+ ExecutionId?: string | undefined;
268
+ CreationTime?: Date | undefined;
269
269
  }
270
270
  export interface StopAppInput {
271
271
  Simulation: string | undefined;
@@ -289,7 +289,7 @@ export interface TagResourceOutput {}
289
289
  export declare class TooManyTagsException extends __BaseException {
290
290
  readonly name: "TooManyTagsException";
291
291
  readonly $fault: "client";
292
- Message?: string;
292
+ Message?: string | undefined;
293
293
  constructor(
294
294
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
295
295
  );
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.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-simspaceweaver",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",