cdk-docker-image-deployment 0.0.66 → 0.0.68

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 (46) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +2 -1
  8. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +78 -10
  9. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +68 -65
  11. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +20 -8
  12. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +844 -836
  13. package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +354 -87
  14. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +343 -42
  15. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.paginators.json +6 -0
  16. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +174 -140
  17. package/node_modules/aws-sdk/apis/mediapackage-vod-2018-11-07.min.json +4 -0
  18. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  19. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +459 -139
  20. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.examples.json +5 -0
  21. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +624 -0
  22. package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +28 -0
  23. package/node_modules/aws-sdk/clients/acm.d.ts +9 -4
  24. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  25. package/node_modules/aws-sdk/clients/all.js +2 -1
  26. package/node_modules/aws-sdk/clients/billingconductor.d.ts +163 -63
  27. package/node_modules/aws-sdk/clients/connect.d.ts +15 -2
  28. package/node_modules/aws-sdk/clients/connectcases.d.ts +27 -5
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +19 -3
  30. package/node_modules/aws-sdk/clients/fms.d.ts +322 -1
  31. package/node_modules/aws-sdk/clients/groundstation.d.ts +413 -70
  32. package/node_modules/aws-sdk/clients/lightsail.d.ts +85 -17
  33. package/node_modules/aws-sdk/clients/mediapackagevod.d.ts +4 -0
  34. package/node_modules/aws-sdk/clients/opensearch.d.ts +890 -430
  35. package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
  36. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +693 -0
  37. package/node_modules/aws-sdk/clients/resourceexplorer2.js +18 -0
  38. package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
  39. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  40. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +53 -16
  41. package/node_modules/aws-sdk/dist/aws-sdk.js +921 -905
  42. package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
  43. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/package.json +7 -7
@@ -35,6 +35,14 @@ declare class GroundStation extends Service {
35
35
  * Creates a DataflowEndpoint group containing the specified list of DataflowEndpoint objects. The name field in each endpoint is used in your mission profile DataflowEndpointConfig to specify which endpoints to use during a contact. When a contact uses multiple DataflowEndpointConfig objects, each Config must match a DataflowEndpoint in the same group.
36
36
  */
37
37
  createDataflowEndpointGroup(callback?: (err: AWSError, data: GroundStation.Types.DataflowEndpointGroupIdResponse) => void): Request<GroundStation.Types.DataflowEndpointGroupIdResponse, AWSError>;
38
+ /**
39
+ * Creates an Ephemeris with the specified EphemerisData.
40
+ */
41
+ createEphemeris(params: GroundStation.Types.CreateEphemerisRequest, callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
42
+ /**
43
+ * Creates an Ephemeris with the specified EphemerisData.
44
+ */
45
+ createEphemeris(callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
38
46
  /**
39
47
  * Creates a mission profile. dataflowEdges is a list of lists of strings. Each lower level list of strings has two elements: a from ARN and a to ARN.
40
48
  */
@@ -59,6 +67,14 @@ declare class GroundStation extends Service {
59
67
  * Deletes a dataflow endpoint group.
60
68
  */
61
69
  deleteDataflowEndpointGroup(callback?: (err: AWSError, data: GroundStation.Types.DataflowEndpointGroupIdResponse) => void): Request<GroundStation.Types.DataflowEndpointGroupIdResponse, AWSError>;
70
+ /**
71
+ * Deletes an ephemeris
72
+ */
73
+ deleteEphemeris(params: GroundStation.Types.DeleteEphemerisRequest, callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
74
+ /**
75
+ * Deletes an ephemeris
76
+ */
77
+ deleteEphemeris(callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
62
78
  /**
63
79
  * Deletes a mission profile.
64
80
  */
@@ -75,6 +91,14 @@ declare class GroundStation extends Service {
75
91
  * Describes an existing contact.
76
92
  */
77
93
  describeContact(callback?: (err: AWSError, data: GroundStation.Types.DescribeContactResponse) => void): Request<GroundStation.Types.DescribeContactResponse, AWSError>;
94
+ /**
95
+ * Describes an existing ephemeris.
96
+ */
97
+ describeEphemeris(params: GroundStation.Types.DescribeEphemerisRequest, callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
98
+ /**
99
+ * Describes an existing ephemeris.
100
+ */
101
+ describeEphemeris(callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
78
102
  /**
79
103
  * Returns Config information. Only one Config response can be returned.
80
104
  */
@@ -139,6 +163,14 @@ declare class GroundStation extends Service {
139
163
  * Returns a list of DataflowEndpoint groups.
140
164
  */
141
165
  listDataflowEndpointGroups(callback?: (err: AWSError, data: GroundStation.Types.ListDataflowEndpointGroupsResponse) => void): Request<GroundStation.Types.ListDataflowEndpointGroupsResponse, AWSError>;
166
+ /**
167
+ * List existing ephemerides.
168
+ */
169
+ listEphemerides(params: GroundStation.Types.ListEphemeridesRequest, callback?: (err: AWSError, data: GroundStation.Types.ListEphemeridesResponse) => void): Request<GroundStation.Types.ListEphemeridesResponse, AWSError>;
170
+ /**
171
+ * List existing ephemerides.
172
+ */
173
+ listEphemerides(callback?: (err: AWSError, data: GroundStation.Types.ListEphemeridesResponse) => void): Request<GroundStation.Types.ListEphemeridesResponse, AWSError>;
142
174
  /**
143
175
  * Returns a list of ground stations.
144
176
  */
@@ -203,6 +235,14 @@ declare class GroundStation extends Service {
203
235
  * Updates the Config used when scheduling contacts. Updating a Config will not update the execution parameters for existing future contacts scheduled with this Config.
204
236
  */
205
237
  updateConfig(callback?: (err: AWSError, data: GroundStation.Types.ConfigIdResponse) => void): Request<GroundStation.Types.ConfigIdResponse, AWSError>;
238
+ /**
239
+ * Updates an existing ephemeris
240
+ */
241
+ updateEphemeris(params: GroundStation.Types.UpdateEphemerisRequest, callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
242
+ /**
243
+ * Updates an existing ephemeris
244
+ */
245
+ updateEphemeris(callback?: (err: AWSError, data: GroundStation.Types.EphemerisIdResponse) => void): Request<GroundStation.Types.EphemerisIdResponse, AWSError>;
206
246
  /**
207
247
  * Updates a mission profile. Updating a mission profile will not update the execution parameters for existing future contacts.
208
248
  */
@@ -213,6 +253,7 @@ declare class GroundStation extends Service {
213
253
  updateMissionProfile(callback?: (err: AWSError, data: GroundStation.Types.MissionProfileIdResponse) => void): Request<GroundStation.Types.MissionProfileIdResponse, AWSError>;
214
254
  }
215
255
  declare namespace GroundStation {
256
+ export type AWSRegion = string;
216
257
  export type AngleUnits = "DEGREE_ANGLE"|"RADIAN"|string;
217
258
  export interface AntennaDemodDecodeDetails {
218
259
  /**
@@ -254,6 +295,7 @@ declare namespace GroundStation {
254
295
  */
255
296
  transmitDisabled?: Boolean;
256
297
  }
298
+ export type AnyArn = string;
257
299
  export type BandwidthUnits = "GHz"|"MHz"|"kHz"|string;
258
300
  export type Boolean = boolean;
259
301
  export type BucketArn = string;
@@ -261,7 +303,7 @@ declare namespace GroundStation {
261
303
  /**
262
304
  * UUID of a contact.
263
305
  */
264
- contactId: String;
306
+ contactId: Uuid;
265
307
  }
266
308
  export type ConfigArn = string;
267
309
  export type ConfigCapabilityType = "antenna-downlink"|"antenna-downlink-demod-decode"|"antenna-uplink"|"dataflow-endpoint"|"tracking"|"uplink-echo"|"s3-recording"|string;
@@ -343,13 +385,13 @@ declare namespace GroundStation {
343
385
  /**
344
386
  * UUID of a contact.
345
387
  */
346
- contactId?: String;
388
+ contactId?: Uuid;
347
389
  /**
348
390
  * Status of a contact.
349
391
  */
350
392
  contactStatus?: ContactStatus;
351
393
  /**
352
- * End time of a contact.
394
+ * End time of a contact in UTC.
353
395
  */
354
396
  endTime?: Timestamp;
355
397
  /**
@@ -385,7 +427,7 @@ declare namespace GroundStation {
385
427
  */
386
428
  satelliteArn?: satelliteArn;
387
429
  /**
388
- * Start time of a contact.
430
+ * Start time of a contact in UTC.
389
431
  */
390
432
  startTime?: Timestamp;
391
433
  /**
@@ -397,7 +439,7 @@ declare namespace GroundStation {
397
439
  /**
398
440
  * UUID of a contact.
399
441
  */
400
- contactId?: String;
442
+ contactId?: Uuid;
401
443
  }
402
444
  export type ContactList = ContactData[];
403
445
  export type ContactStatus = "AVAILABLE"|"AWS_CANCELLED"|"AWS_FAILED"|"CANCELLED"|"CANCELLING"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE"|"PASS"|"POSTPASS"|"PREPASS"|"SCHEDULED"|"SCHEDULING"|string;
@@ -425,6 +467,40 @@ declare namespace GroundStation {
425
467
  */
426
468
  tags?: TagsMap;
427
469
  }
470
+ export interface CreateEphemerisRequest {
471
+ /**
472
+ * Whether to set the ephemeris status to ENABLED after validation. Setting this to false will set the ephemeris status to DISABLED after validation.
473
+ */
474
+ enabled?: Boolean;
475
+ /**
476
+ * Ephemeris data.
477
+ */
478
+ ephemeris?: EphemerisData;
479
+ /**
480
+ * An overall expiration time for the ephemeris in UTC, after which it will become EXPIRED.
481
+ */
482
+ expirationTime?: Timestamp;
483
+ /**
484
+ * The ARN of a KMS key used to encrypt the ephemeris in Ground Station.
485
+ */
486
+ kmsKeyArn?: KeyArn;
487
+ /**
488
+ * A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
489
+ */
490
+ name: SafeName;
491
+ /**
492
+ * Customer-provided priority score to establish the order in which overlapping ephemerides should be used. The default for customer-provided ephemeris priority is 1, and higher numbers take precedence. Priority must be 1 or greater
493
+ */
494
+ priority?: CustomerEphemerisPriority;
495
+ /**
496
+ * AWS Ground Station satellite ID for this ephemeris.
497
+ */
498
+ satelliteId: Uuid;
499
+ /**
500
+ * Tags assigned to an ephemeris.
501
+ */
502
+ tags?: TagsMap;
503
+ }
428
504
  export interface CreateMissionProfileRequest {
429
505
  /**
430
506
  * Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.
@@ -441,7 +517,7 @@ declare namespace GroundStation {
441
517
  /**
442
518
  * Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.
443
519
  */
444
- minimumViableContactDurationSeconds: DurationInSeconds;
520
+ minimumViableContactDurationSeconds: PositiveDurationInSeconds;
445
521
  /**
446
522
  * Name of a mission profile.
447
523
  */
@@ -456,6 +532,7 @@ declare namespace GroundStation {
456
532
  trackingConfigArn: ConfigArn;
457
533
  }
458
534
  export type Criticality = "PREFERRED"|"REMOVED"|"REQUIRED"|string;
535
+ export type CustomerEphemerisPriority = number;
459
536
  export interface DataflowDetail {
460
537
  destination?: Destination;
461
538
  /**
@@ -499,7 +576,7 @@ declare namespace GroundStation {
499
576
  /**
500
577
  * UUID of a dataflow endpoint group.
501
578
  */
502
- dataflowEndpointGroupId?: String;
579
+ dataflowEndpointGroupId?: Uuid;
503
580
  }
504
581
  export type DataflowEndpointGroupList = DataflowEndpointListItem[];
505
582
  export interface DataflowEndpointListItem {
@@ -510,7 +587,7 @@ declare namespace GroundStation {
510
587
  /**
511
588
  * UUID of a dataflow endpoint group.
512
589
  */
513
- dataflowEndpointGroupId?: String;
590
+ dataflowEndpointGroupId?: Uuid;
514
591
  }
515
592
  export type DataflowEndpointMtuInteger = number;
516
593
  export type DataflowList = DataflowDetail[];
@@ -524,7 +601,7 @@ declare namespace GroundStation {
524
601
  /**
525
602
  * UUID of a Config.
526
603
  */
527
- configId: String;
604
+ configId: Uuid;
528
605
  /**
529
606
  * Type of a Config.
530
607
  */
@@ -534,13 +611,19 @@ declare namespace GroundStation {
534
611
  /**
535
612
  * UUID of a dataflow endpoint group.
536
613
  */
537
- dataflowEndpointGroupId: String;
614
+ dataflowEndpointGroupId: Uuid;
615
+ }
616
+ export interface DeleteEphemerisRequest {
617
+ /**
618
+ * The AWS Ground Station ephemeris ID.
619
+ */
620
+ ephemerisId: Uuid;
538
621
  }
539
622
  export interface DeleteMissionProfileRequest {
540
623
  /**
541
624
  * UUID of a mission profile.
542
625
  */
543
- missionProfileId: String;
626
+ missionProfileId: Uuid;
544
627
  }
545
628
  export interface DemodulationConfig {
546
629
  /**
@@ -552,13 +635,13 @@ declare namespace GroundStation {
552
635
  /**
553
636
  * UUID of a contact.
554
637
  */
555
- contactId: String;
638
+ contactId: Uuid;
556
639
  }
557
640
  export interface DescribeContactResponse {
558
641
  /**
559
642
  * UUID of a contact.
560
643
  */
561
- contactId?: String;
644
+ contactId?: Uuid;
562
645
  /**
563
646
  * Status of a contact.
564
647
  */
@@ -568,7 +651,7 @@ declare namespace GroundStation {
568
651
  */
569
652
  dataflowList?: DataflowList;
570
653
  /**
571
- * End time of a contact.
654
+ * End time of a contact in UTC.
572
655
  */
573
656
  endTime?: Timestamp;
574
657
  /**
@@ -604,7 +687,7 @@ declare namespace GroundStation {
604
687
  */
605
688
  satelliteArn?: satelliteArn;
606
689
  /**
607
- * Start time of a contact.
690
+ * Start time of a contact in UTC.
608
691
  */
609
692
  startTime?: Timestamp;
610
693
  /**
@@ -612,6 +695,54 @@ declare namespace GroundStation {
612
695
  */
613
696
  tags?: TagsMap;
614
697
  }
698
+ export interface DescribeEphemerisRequest {
699
+ /**
700
+ * The AWS Ground Station ephemeris ID.
701
+ */
702
+ ephemerisId: Uuid;
703
+ }
704
+ export interface DescribeEphemerisResponse {
705
+ /**
706
+ * The time the ephemeris was uploaded in UTC.
707
+ */
708
+ creationTime?: Timestamp;
709
+ /**
710
+ * Whether or not the ephemeris is enabled.
711
+ */
712
+ enabled?: Boolean;
713
+ /**
714
+ * The AWS Ground Station ephemeris ID.
715
+ */
716
+ ephemerisId?: Uuid;
717
+ /**
718
+ * Reason that an ephemeris failed validation. Only provided for ephemerides with INVALID status.
719
+ */
720
+ invalidReason?: EphemerisInvalidReason;
721
+ /**
722
+ * A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
723
+ */
724
+ name?: SafeName;
725
+ /**
726
+ * Customer-provided priority score to establish the order in which overlapping ephemerides should be used. The default for customer-provided ephemeris priority is 1, and higher numbers take precedence. Priority must be 1 or greater
727
+ */
728
+ priority?: EphemerisPriority;
729
+ /**
730
+ * The AWS Ground Station satellite ID associated with ephemeris.
731
+ */
732
+ satelliteId?: Uuid;
733
+ /**
734
+ * The status of the ephemeris.
735
+ */
736
+ status?: EphemerisStatus;
737
+ /**
738
+ * Supplied ephemeris data.
739
+ */
740
+ suppliedData?: EphemerisTypeDescription;
741
+ /**
742
+ * Tags assigned to an ephemeris.
743
+ */
744
+ tags?: TagsMap;
745
+ }
615
746
  export interface Destination {
616
747
  /**
617
748
  * Additional details for a Config, if type is dataflow endpoint or antenna demod decode.
@@ -620,7 +751,7 @@ declare namespace GroundStation {
620
751
  /**
621
752
  * UUID of a Config.
622
753
  */
623
- configId?: String;
754
+ configId?: Uuid;
624
755
  /**
625
756
  * Type of a Config.
626
757
  */
@@ -659,12 +790,90 @@ declare namespace GroundStation {
659
790
  */
660
791
  endpoint?: DataflowEndpoint;
661
792
  /**
662
- * Endpoint security details.
793
+ * Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.
663
794
  */
664
795
  securityDetails?: SecurityDetails;
665
796
  }
666
797
  export type EndpointDetailsList = EndpointDetails[];
667
798
  export type EndpointStatus = "created"|"creating"|"deleted"|"deleting"|"failed"|string;
799
+ export type EphemeridesList = EphemerisItem[];
800
+ export interface EphemerisData {
801
+ oem?: OEMEphemeris;
802
+ tle?: TLEEphemeris;
803
+ }
804
+ export interface EphemerisDescription {
805
+ /**
806
+ * Supplied ephemeris data.
807
+ */
808
+ ephemerisData?: UnboundedString;
809
+ /**
810
+ * Source S3 object used for the ephemeris.
811
+ */
812
+ sourceS3Object?: S3Object;
813
+ }
814
+ export interface EphemerisIdResponse {
815
+ /**
816
+ * The AWS Ground Station ephemeris ID.
817
+ */
818
+ ephemerisId?: Uuid;
819
+ }
820
+ export type EphemerisInvalidReason = "METADATA_INVALID"|"TIME_RANGE_INVALID"|"TRAJECTORY_INVALID"|"KMS_KEY_INVALID"|"VALIDATION_ERROR"|string;
821
+ export interface EphemerisItem {
822
+ /**
823
+ * The time the ephemeris was uploaded in UTC.
824
+ */
825
+ creationTime?: Timestamp;
826
+ /**
827
+ * Whether or not the ephemeris is enabled.
828
+ */
829
+ enabled?: Boolean;
830
+ /**
831
+ * The AWS Ground Station ephemeris ID.
832
+ */
833
+ ephemerisId?: Uuid;
834
+ /**
835
+ * A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
836
+ */
837
+ name?: SafeName;
838
+ /**
839
+ * Customer-provided priority score to establish the order in which overlapping ephemerides should be used. The default for customer-provided ephemeris priority is 1, and higher numbers take precedence. Priority must be 1 or greater
840
+ */
841
+ priority?: EphemerisPriority;
842
+ /**
843
+ * Source S3 object used for the ephemeris.
844
+ */
845
+ sourceS3Object?: S3Object;
846
+ /**
847
+ * The status of the ephemeris.
848
+ */
849
+ status?: EphemerisStatus;
850
+ }
851
+ export interface EphemerisMetaData {
852
+ /**
853
+ * UUID of a customer-provided ephemeris. This field is not populated for default ephemerides from Space Track.
854
+ */
855
+ ephemerisId?: Uuid;
856
+ /**
857
+ * The epoch of a default, ephemeris from Space Track in UTC. This field is not populated for customer-provided ephemerides.
858
+ */
859
+ epoch?: Timestamp;
860
+ /**
861
+ * A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris. A name is only returned for customer-provider ephemerides that have a name associated.
862
+ */
863
+ name?: SafeName;
864
+ /**
865
+ * The EphemerisSource that generated a given ephemeris.
866
+ */
867
+ source: EphemerisSource;
868
+ }
869
+ export type EphemerisPriority = number;
870
+ export type EphemerisSource = "CUSTOMER_PROVIDED"|"SPACE_TRACK"|string;
871
+ export type EphemerisStatus = "VALIDATING"|"INVALID"|"ERROR"|"ENABLED"|"DISABLED"|"EXPIRED"|string;
872
+ export type EphemerisStatusList = EphemerisStatus[];
873
+ export interface EphemerisTypeDescription {
874
+ oem?: EphemerisDescription;
875
+ tle?: EphemerisDescription;
876
+ }
668
877
  export interface Frequency {
669
878
  /**
670
879
  * Frequency units.
@@ -690,7 +899,7 @@ declare namespace GroundStation {
690
899
  /**
691
900
  * UUID of a Config.
692
901
  */
693
- configId: String;
902
+ configId: Uuid;
694
903
  /**
695
904
  * Type of a Config.
696
905
  */
@@ -726,7 +935,7 @@ declare namespace GroundStation {
726
935
  /**
727
936
  * UUID of a dataflow endpoint group.
728
937
  */
729
- dataflowEndpointGroupId: String;
938
+ dataflowEndpointGroupId: Uuid;
730
939
  }
731
940
  export interface GetDataflowEndpointGroupResponse {
732
941
  /**
@@ -736,7 +945,7 @@ declare namespace GroundStation {
736
945
  /**
737
946
  * UUID of a dataflow endpoint group.
738
947
  */
739
- dataflowEndpointGroupId?: String;
948
+ dataflowEndpointGroupId?: Uuid;
740
949
  /**
741
950
  * Details of a dataflow endpoint.
742
951
  */
@@ -750,11 +959,11 @@ declare namespace GroundStation {
750
959
  /**
751
960
  * The month being requested, with a value of 1-12.
752
961
  */
753
- month: Integer;
962
+ month: Month;
754
963
  /**
755
964
  * The year being requested, in the format of YYYY.
756
965
  */
757
- year: Integer;
966
+ year: Year;
758
967
  }
759
968
  export interface GetMinuteUsageResponse {
760
969
  /**
@@ -782,7 +991,7 @@ declare namespace GroundStation {
782
991
  /**
783
992
  * UUID of a mission profile.
784
993
  */
785
- missionProfileId: String;
994
+ missionProfileId: Uuid;
786
995
  }
787
996
  export interface GetMissionProfileResponse {
788
997
  /**
@@ -800,7 +1009,7 @@ declare namespace GroundStation {
800
1009
  /**
801
1010
  * Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.
802
1011
  */
803
- minimumViableContactDurationSeconds?: DurationInSeconds;
1012
+ minimumViableContactDurationSeconds?: PositiveDurationInSeconds;
804
1013
  /**
805
1014
  * ARN of a mission profile.
806
1015
  */
@@ -808,15 +1017,15 @@ declare namespace GroundStation {
808
1017
  /**
809
1018
  * UUID of a mission profile.
810
1019
  */
811
- missionProfileId?: String;
1020
+ missionProfileId?: Uuid;
812
1021
  /**
813
1022
  * Name of a mission profile.
814
1023
  */
815
- name?: String;
1024
+ name?: SafeName;
816
1025
  /**
817
1026
  * Region of a mission profile.
818
1027
  */
819
- region?: String;
1028
+ region?: AWSRegion;
820
1029
  /**
821
1030
  * Tags assigned to a mission profile.
822
1031
  */
@@ -830,9 +1039,13 @@ declare namespace GroundStation {
830
1039
  /**
831
1040
  * UUID of a satellite.
832
1041
  */
833
- satelliteId: String;
1042
+ satelliteId: Uuid;
834
1043
  }
835
1044
  export interface GetSatelliteResponse {
1045
+ /**
1046
+ * The current ephemeris being used to compute the trajectory of the satellite.
1047
+ */
1048
+ currentEphemeris?: EphemerisMetaData;
836
1049
  /**
837
1050
  * A list of ground stations to which the satellite is on-boarded.
838
1051
  */
@@ -854,29 +1067,31 @@ declare namespace GroundStation {
854
1067
  /**
855
1068
  * UUID of a ground station.
856
1069
  */
857
- groundStationId?: String;
1070
+ groundStationId?: GroundStationName;
858
1071
  /**
859
1072
  * Name of a ground station.
860
1073
  */
861
- groundStationName?: String;
1074
+ groundStationName?: GroundStationName;
862
1075
  /**
863
1076
  * Ground station Region.
864
1077
  */
865
- region?: String;
1078
+ region?: AWSRegion;
866
1079
  }
867
- export type GroundStationIdList = String[];
1080
+ export type GroundStationIdList = GroundStationName[];
868
1081
  export type GroundStationList = GroundStationData[];
1082
+ export type GroundStationName = string;
869
1083
  export type Integer = number;
870
1084
  export type JsonString = string;
1085
+ export type KeyArn = string;
871
1086
  export interface ListConfigsRequest {
872
1087
  /**
873
1088
  * Maximum number of Configs returned.
874
1089
  */
875
- maxResults?: Integer;
1090
+ maxResults?: PaginationMaxResults;
876
1091
  /**
877
1092
  * Next token returned in the request of a previous ListConfigs call. Used to get the next page of results.
878
1093
  */
879
- nextToken?: String;
1094
+ nextToken?: PaginationToken;
880
1095
  }
881
1096
  export interface ListConfigsResponse {
882
1097
  /**
@@ -886,21 +1101,21 @@ declare namespace GroundStation {
886
1101
  /**
887
1102
  * Next token returned in the response of a previous ListConfigs call. Used to get the next page of results.
888
1103
  */
889
- nextToken?: String;
1104
+ nextToken?: PaginationToken;
890
1105
  }
891
1106
  export interface ListContactsRequest {
892
1107
  /**
893
- * End time of a contact.
1108
+ * End time of a contact in UTC.
894
1109
  */
895
1110
  endTime: Timestamp;
896
1111
  /**
897
1112
  * Name of a ground station.
898
1113
  */
899
- groundStation?: String;
1114
+ groundStation?: GroundStationName;
900
1115
  /**
901
1116
  * Maximum number of contacts returned.
902
1117
  */
903
- maxResults?: Integer;
1118
+ maxResults?: PaginationMaxResults;
904
1119
  /**
905
1120
  * ARN of a mission profile.
906
1121
  */
@@ -908,13 +1123,13 @@ declare namespace GroundStation {
908
1123
  /**
909
1124
  * Next token returned in the request of a previous ListContacts call. Used to get the next page of results.
910
1125
  */
911
- nextToken?: String;
1126
+ nextToken?: PaginationToken;
912
1127
  /**
913
1128
  * ARN of a satellite.
914
1129
  */
915
1130
  satelliteArn?: satelliteArn;
916
1131
  /**
917
- * Start time of a contact.
1132
+ * Start time of a contact in UTC.
918
1133
  */
919
1134
  startTime: Timestamp;
920
1135
  /**
@@ -930,17 +1145,17 @@ declare namespace GroundStation {
930
1145
  /**
931
1146
  * Next token returned in the response of a previous ListContacts call. Used to get the next page of results.
932
1147
  */
933
- nextToken?: String;
1148
+ nextToken?: PaginationToken;
934
1149
  }
935
1150
  export interface ListDataflowEndpointGroupsRequest {
936
1151
  /**
937
1152
  * Maximum number of dataflow endpoint groups returned.
938
1153
  */
939
- maxResults?: Integer;
1154
+ maxResults?: PaginationMaxResults;
940
1155
  /**
941
1156
  * Next token returned in the request of a previous ListDataflowEndpointGroups call. Used to get the next page of results.
942
1157
  */
943
- nextToken?: String;
1158
+ nextToken?: PaginationToken;
944
1159
  }
945
1160
  export interface ListDataflowEndpointGroupsResponse {
946
1161
  /**
@@ -950,21 +1165,57 @@ declare namespace GroundStation {
950
1165
  /**
951
1166
  * Next token returned in the response of a previous ListDataflowEndpointGroups call. Used to get the next page of results.
952
1167
  */
953
- nextToken?: String;
1168
+ nextToken?: PaginationToken;
1169
+ }
1170
+ export interface ListEphemeridesRequest {
1171
+ /**
1172
+ * The end time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime.
1173
+ */
1174
+ endTime: Timestamp;
1175
+ /**
1176
+ * Maximum number of ephemerides to return.
1177
+ */
1178
+ maxResults?: PaginationMaxResults;
1179
+ /**
1180
+ * Pagination token.
1181
+ */
1182
+ nextToken?: PaginationToken;
1183
+ /**
1184
+ * The AWS Ground Station satellite ID to list ephemeris for.
1185
+ */
1186
+ satelliteId: Uuid;
1187
+ /**
1188
+ * The start time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime.
1189
+ */
1190
+ startTime: Timestamp;
1191
+ /**
1192
+ * The list of ephemeris status to return.
1193
+ */
1194
+ statusList?: EphemerisStatusList;
1195
+ }
1196
+ export interface ListEphemeridesResponse {
1197
+ /**
1198
+ * List of ephemerides.
1199
+ */
1200
+ ephemerides?: EphemeridesList;
1201
+ /**
1202
+ * Pagination token.
1203
+ */
1204
+ nextToken?: PaginationToken;
954
1205
  }
955
1206
  export interface ListGroundStationsRequest {
956
1207
  /**
957
1208
  * Maximum number of ground stations returned.
958
1209
  */
959
- maxResults?: Integer;
1210
+ maxResults?: PaginationMaxResults;
960
1211
  /**
961
1212
  * Next token that can be supplied in the next call to get the next page of ground stations.
962
1213
  */
963
- nextToken?: String;
1214
+ nextToken?: PaginationToken;
964
1215
  /**
965
1216
  * Satellite ID to retrieve on-boarded ground stations.
966
1217
  */
967
- satelliteId?: String;
1218
+ satelliteId?: Uuid;
968
1219
  }
969
1220
  export interface ListGroundStationsResponse {
970
1221
  /**
@@ -974,17 +1225,17 @@ declare namespace GroundStation {
974
1225
  /**
975
1226
  * Next token that can be supplied in the next call to get the next page of ground stations.
976
1227
  */
977
- nextToken?: String;
1228
+ nextToken?: PaginationToken;
978
1229
  }
979
1230
  export interface ListMissionProfilesRequest {
980
1231
  /**
981
1232
  * Maximum number of mission profiles returned.
982
1233
  */
983
- maxResults?: Integer;
1234
+ maxResults?: PaginationMaxResults;
984
1235
  /**
985
1236
  * Next token returned in the request of a previous ListMissionProfiles call. Used to get the next page of results.
986
1237
  */
987
- nextToken?: String;
1238
+ nextToken?: PaginationToken;
988
1239
  }
989
1240
  export interface ListMissionProfilesResponse {
990
1241
  /**
@@ -994,23 +1245,23 @@ declare namespace GroundStation {
994
1245
  /**
995
1246
  * Next token returned in the response of a previous ListMissionProfiles call. Used to get the next page of results.
996
1247
  */
997
- nextToken?: String;
1248
+ nextToken?: PaginationToken;
998
1249
  }
999
1250
  export interface ListSatellitesRequest {
1000
1251
  /**
1001
1252
  * Maximum number of satellites returned.
1002
1253
  */
1003
- maxResults?: Integer;
1254
+ maxResults?: PaginationMaxResults;
1004
1255
  /**
1005
1256
  * Next token that can be supplied in the next call to get the next page of satellites.
1006
1257
  */
1007
- nextToken?: String;
1258
+ nextToken?: PaginationToken;
1008
1259
  }
1009
1260
  export interface ListSatellitesResponse {
1010
1261
  /**
1011
1262
  * Next token that can be supplied in the next call to get the next page of satellites.
1012
1263
  */
1013
- nextToken?: String;
1264
+ nextToken?: PaginationToken;
1014
1265
  /**
1015
1266
  * List of satellites.
1016
1267
  */
@@ -1020,7 +1271,7 @@ declare namespace GroundStation {
1020
1271
  /**
1021
1272
  * ARN of a resource.
1022
1273
  */
1023
- resourceArn: String;
1274
+ resourceArn: AnyArn;
1024
1275
  }
1025
1276
  export interface ListTagsForResourceResponse {
1026
1277
  /**
@@ -1033,7 +1284,7 @@ declare namespace GroundStation {
1033
1284
  /**
1034
1285
  * UUID of a mission profile.
1035
1286
  */
1036
- missionProfileId?: String;
1287
+ missionProfileId?: Uuid;
1037
1288
  }
1038
1289
  export type MissionProfileList = MissionProfileListItem[];
1039
1290
  export interface MissionProfileListItem {
@@ -1044,26 +1295,40 @@ declare namespace GroundStation {
1044
1295
  /**
1045
1296
  * UUID of a mission profile.
1046
1297
  */
1047
- missionProfileId?: String;
1298
+ missionProfileId?: Uuid;
1048
1299
  /**
1049
1300
  * Name of a mission profile.
1050
1301
  */
1051
- name?: String;
1302
+ name?: SafeName;
1052
1303
  /**
1053
1304
  * Region of a mission profile.
1054
1305
  */
1055
- region?: String;
1306
+ region?: AWSRegion;
1056
1307
  }
1308
+ export type Month = number;
1309
+ export interface OEMEphemeris {
1310
+ /**
1311
+ * The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.
1312
+ */
1313
+ oemData?: UnboundedString;
1314
+ /**
1315
+ * Identifies the S3 object to be used as the ephemeris.
1316
+ */
1317
+ s3Object?: S3Object;
1318
+ }
1319
+ export type PaginationMaxResults = number;
1320
+ export type PaginationToken = string;
1057
1321
  export type Polarization = "LEFT_HAND"|"NONE"|"RIGHT_HAND"|string;
1322
+ export type PositiveDurationInSeconds = number;
1058
1323
  export interface ReserveContactRequest {
1059
1324
  /**
1060
- * End time of a contact.
1325
+ * End time of a contact in UTC.
1061
1326
  */
1062
1327
  endTime: Timestamp;
1063
1328
  /**
1064
1329
  * Name of a ground station.
1065
1330
  */
1066
- groundStation: String;
1331
+ groundStation: GroundStationName;
1067
1332
  /**
1068
1333
  * ARN of a mission profile.
1069
1334
  */
@@ -1073,7 +1338,7 @@ declare namespace GroundStation {
1073
1338
  */
1074
1339
  satelliteArn: satelliteArn;
1075
1340
  /**
1076
- * Start time of a contact.
1341
+ * Start time of a contact in UTC.
1077
1342
  */
1078
1343
  startTime: Timestamp;
1079
1344
  /**
@@ -1082,7 +1347,23 @@ declare namespace GroundStation {
1082
1347
  tags?: TagsMap;
1083
1348
  }
1084
1349
  export type RoleArn = string;
1350
+ export type S3BucketName = string;
1085
1351
  export type S3KeyPrefix = string;
1352
+ export interface S3Object {
1353
+ /**
1354
+ * An Amazon S3 Bucket name.
1355
+ */
1356
+ bucket?: S3BucketName;
1357
+ /**
1358
+ * An Amazon S3 key for the ephemeris.
1359
+ */
1360
+ key?: S3ObjectKey;
1361
+ /**
1362
+ * For versioned S3 objects, the version to use for the ephemeris.
1363
+ */
1364
+ version?: S3VersionId;
1365
+ }
1366
+ export type S3ObjectKey = string;
1086
1367
  export interface S3RecordingConfig {
1087
1368
  /**
1088
1369
  * ARN of the bucket to record to.
@@ -1103,13 +1384,18 @@ declare namespace GroundStation {
1103
1384
  */
1104
1385
  bucketArn?: BucketArn;
1105
1386
  /**
1106
- * Template of the S3 key used.
1387
+ * Key template used for the S3 Recording Configuration
1107
1388
  */
1108
1389
  keyTemplate?: String;
1109
1390
  }
1391
+ export type S3VersionId = string;
1110
1392
  export type SafeName = string;
1111
1393
  export type SatelliteList = SatelliteListItem[];
1112
1394
  export interface SatelliteListItem {
1395
+ /**
1396
+ * The current ephemeris being used to compute the trajectory of the satellite.
1397
+ */
1398
+ currentEphemeris?: EphemerisMetaData;
1113
1399
  /**
1114
1400
  * A list of ground stations to which the satellite is on-boarded.
1115
1401
  */
@@ -1154,7 +1440,7 @@ declare namespace GroundStation {
1154
1440
  }
1155
1441
  export interface Source {
1156
1442
  /**
1157
- * Additional details for a Config, if type is dataflow endpoint or antenna demod decode.
1443
+ * Additional details for a Config, if type is dataflow-endpoint or antenna-downlink-demod-decode
1158
1444
  */
1159
1445
  configDetails?: ConfigDetails;
1160
1446
  /**
@@ -1187,12 +1473,37 @@ declare namespace GroundStation {
1187
1473
  export type StatusList = ContactStatus[];
1188
1474
  export type String = string;
1189
1475
  export type SubnetList = String[];
1190
- export type TagKeys = String[];
1476
+ export interface TLEData {
1477
+ /**
1478
+ * First line of two-line element set (TLE) data.
1479
+ */
1480
+ tleLine1: TleLineOne;
1481
+ /**
1482
+ * Second line of two-line element set (TLE) data.
1483
+ */
1484
+ tleLine2: TleLineTwo;
1485
+ /**
1486
+ * The valid time range for the TLE. Gaps or overlap are not permitted.
1487
+ */
1488
+ validTimeRange: TimeRange;
1489
+ }
1490
+ export type TLEDataList = TLEData[];
1491
+ export interface TLEEphemeris {
1492
+ /**
1493
+ * Identifies the S3 object to be used as the ephemeris.
1494
+ */
1495
+ s3Object?: S3Object;
1496
+ /**
1497
+ * The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.
1498
+ */
1499
+ tleData?: TLEDataList;
1500
+ }
1501
+ export type TagKeys = UnboundedString[];
1191
1502
  export interface TagResourceRequest {
1192
1503
  /**
1193
1504
  * ARN of a resource tag.
1194
1505
  */
1195
- resourceArn: String;
1506
+ resourceArn: AnyArn;
1196
1507
  /**
1197
1508
  * Tags assigned to a resource.
1198
1509
  */
@@ -1201,18 +1512,31 @@ declare namespace GroundStation {
1201
1512
  export interface TagResourceResponse {
1202
1513
  }
1203
1514
  export type TagsMap = {[key: string]: String};
1515
+ export interface TimeRange {
1516
+ /**
1517
+ * Time in UTC at which the time range ends.
1518
+ */
1519
+ endTime: Timestamp;
1520
+ /**
1521
+ * Time in UTC at which the time range starts.
1522
+ */
1523
+ startTime: Timestamp;
1524
+ }
1204
1525
  export type Timestamp = Date;
1526
+ export type TleLineOne = string;
1527
+ export type TleLineTwo = string;
1205
1528
  export interface TrackingConfig {
1206
1529
  /**
1207
1530
  * Current setting for autotrack.
1208
1531
  */
1209
1532
  autotrack: Criticality;
1210
1533
  }
1534
+ export type UnboundedString = string;
1211
1535
  export interface UntagResourceRequest {
1212
1536
  /**
1213
1537
  * ARN of a resource.
1214
1538
  */
1215
- resourceArn: String;
1539
+ resourceArn: AnyArn;
1216
1540
  /**
1217
1541
  * Keys of a resource tag.
1218
1542
  */
@@ -1228,7 +1552,7 @@ declare namespace GroundStation {
1228
1552
  /**
1229
1553
  * UUID of a Config.
1230
1554
  */
1231
- configId: String;
1555
+ configId: Uuid;
1232
1556
  /**
1233
1557
  * Type of a Config.
1234
1558
  */
@@ -1238,6 +1562,24 @@ declare namespace GroundStation {
1238
1562
  */
1239
1563
  name: SafeName;
1240
1564
  }
1565
+ export interface UpdateEphemerisRequest {
1566
+ /**
1567
+ * Whether the ephemeris is enabled or not. Changing this value will not require the ephemeris to be re-validated.
1568
+ */
1569
+ enabled: Boolean;
1570
+ /**
1571
+ * The AWS Ground Station ephemeris ID.
1572
+ */
1573
+ ephemerisId: Uuid;
1574
+ /**
1575
+ * A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
1576
+ */
1577
+ name?: SafeName;
1578
+ /**
1579
+ * Customer-provided priority score to establish the order in which overlapping ephemerides should be used. The default for customer-provided ephemeris priority is 1, and higher numbers take precedence. Priority must be 1 or greater
1580
+ */
1581
+ priority?: EphemerisPriority;
1582
+ }
1241
1583
  export interface UpdateMissionProfileRequest {
1242
1584
  /**
1243
1585
  * Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.
@@ -1254,11 +1596,11 @@ declare namespace GroundStation {
1254
1596
  /**
1255
1597
  * Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.
1256
1598
  */
1257
- minimumViableContactDurationSeconds?: DurationInSeconds;
1599
+ minimumViableContactDurationSeconds?: PositiveDurationInSeconds;
1258
1600
  /**
1259
1601
  * UUID of a mission profile.
1260
1602
  */
1261
- missionProfileId: String;
1603
+ missionProfileId: Uuid;
1262
1604
  /**
1263
1605
  * Name of a mission profile.
1264
1606
  */
@@ -1289,6 +1631,7 @@ declare namespace GroundStation {
1289
1631
  polarization?: Polarization;
1290
1632
  }
1291
1633
  export type Uuid = string;
1634
+ export type Year = number;
1292
1635
  export type noradSatelliteID = number;
1293
1636
  export type satelliteArn = string;
1294
1637
  /**