@aws-sdk/client-groundstation 3.202.0 → 3.207.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist-cjs/GroundStation.js +75 -0
  2. package/dist-cjs/commands/CreateEphemerisCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteEphemerisCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeEphemerisCommand.js +46 -0
  5. package/dist-cjs/commands/ListEphemeridesCommand.js +46 -0
  6. package/dist-cjs/commands/UpdateEphemerisCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/models/models_0.js +129 -2
  9. package/dist-cjs/pagination/ListEphemeridesPaginator.js +36 -0
  10. package/dist-cjs/pagination/index.js +1 -0
  11. package/dist-cjs/protocols/Aws_restJson1.js +468 -1
  12. package/dist-cjs/runtimeConfig.browser.js +0 -3
  13. package/dist-cjs/runtimeConfig.js +0 -3
  14. package/dist-cjs/runtimeConfig.shared.js +3 -0
  15. package/dist-es/GroundStation.js +75 -0
  16. package/dist-es/commands/CreateEphemerisCommand.js +42 -0
  17. package/dist-es/commands/DeleteEphemerisCommand.js +42 -0
  18. package/dist-es/commands/DescribeEphemerisCommand.js +42 -0
  19. package/dist-es/commands/ListEphemeridesCommand.js +42 -0
  20. package/dist-es/commands/UpdateEphemerisCommand.js +42 -0
  21. package/dist-es/commands/index.js +5 -0
  22. package/dist-es/models/models_0.js +108 -0
  23. package/dist-es/pagination/ListEphemeridesPaginator.js +32 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_restJson1.js +457 -1
  26. package/dist-es/runtimeConfig.browser.js +0 -3
  27. package/dist-es/runtimeConfig.js +0 -3
  28. package/dist-es/runtimeConfig.shared.js +3 -0
  29. package/dist-types/GroundStation.d.ts +35 -0
  30. package/dist-types/GroundStationClient.d.ts +7 -2
  31. package/dist-types/commands/CreateEphemerisCommand.d.ts +37 -0
  32. package/dist-types/commands/DeleteEphemerisCommand.d.ts +37 -0
  33. package/dist-types/commands/DescribeEphemerisCommand.d.ts +37 -0
  34. package/dist-types/commands/ListEphemeridesCommand.d.ts +37 -0
  35. package/dist-types/commands/UpdateEphemerisCommand.d.ts +37 -0
  36. package/dist-types/commands/index.d.ts +5 -0
  37. package/dist-types/models/models_0.d.ts +492 -11
  38. package/dist-types/pagination/ListEphemeridesPaginator.d.ts +4 -0
  39. package/dist-types/pagination/index.d.ts +1 -0
  40. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  41. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  42. package/dist-types/runtimeConfig.d.ts +2 -2
  43. package/dist-types/runtimeConfig.shared.d.ts +2 -0
  44. package/dist-types/ts3.4/GroundStation.d.ts +85 -0
  45. package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
  46. package/dist-types/ts3.4/commands/CreateEphemerisCommand.d.ts +37 -0
  47. package/dist-types/ts3.4/commands/DeleteEphemerisCommand.d.ts +37 -0
  48. package/dist-types/ts3.4/commands/DescribeEphemerisCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/ListEphemeridesCommand.d.ts +37 -0
  50. package/dist-types/ts3.4/commands/UpdateEphemerisCommand.d.ts +37 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +209 -0
  53. package/dist-types/ts3.4/pagination/ListEphemeridesPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  55. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  58. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
  59. package/package.json +5 -4
  60. package/CHANGELOG.md +0 -2817
@@ -669,7 +669,7 @@ export interface SecurityDetails {
669
669
  */
670
670
  export interface EndpointDetails {
671
671
  /**
672
- * <p>Endpoint security details.</p>
672
+ * <p>Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.</p>
673
673
  */
674
674
  securityDetails?: SecurityDetails;
675
675
  /**
@@ -686,7 +686,7 @@ export interface S3RecordingDetails {
686
686
  */
687
687
  bucketArn?: string;
688
688
  /**
689
- * <p>Template of the S3 key used.</p>
689
+ * <p>Key template used for the S3 Recording Configuration</p>
690
690
  */
691
691
  keyTemplate?: string;
692
692
  }
@@ -794,7 +794,8 @@ export interface Source {
794
794
  */
795
795
  configId?: string;
796
796
  /**
797
- * <p>Additional details for a <code>Config</code>, if type is dataflow endpoint or antenna demod decode.</p>
797
+ * <p>Additional details for a <code>Config</code>, if type is <code>dataflow-endpoint</code> or <code>antenna-downlink-demod-decode</code>
798
+ * </p>
798
799
  */
799
800
  configDetails?: ConfigDetails;
800
801
  /**
@@ -849,11 +850,11 @@ export interface DescribeContactResponse {
849
850
  */
850
851
  satelliteArn?: string;
851
852
  /**
852
- * <p>Start time of a contact.</p>
853
+ * <p>Start time of a contact in UTC.</p>
853
854
  */
854
855
  startTime?: Date;
855
856
  /**
856
- * <p>End time of a contact.</p>
857
+ * <p>End time of a contact in UTC.</p>
857
858
  */
858
859
  endTime?: Date;
859
860
  /**
@@ -910,11 +911,11 @@ export interface ListContactsRequest {
910
911
  */
911
912
  statusList: (ContactStatus | string)[] | undefined;
912
913
  /**
913
- * <p>Start time of a contact.</p>
914
+ * <p>Start time of a contact in UTC.</p>
914
915
  */
915
916
  startTime: Date | undefined;
916
917
  /**
917
- * <p>End time of a contact.</p>
918
+ * <p>End time of a contact in UTC.</p>
918
919
  */
919
920
  endTime: Date | undefined;
920
921
  /**
@@ -947,11 +948,11 @@ export interface ContactData {
947
948
  */
948
949
  satelliteArn?: string;
949
950
  /**
950
- * <p>Start time of a contact.</p>
951
+ * <p>Start time of a contact in UTC.</p>
951
952
  */
952
953
  startTime?: Date;
953
954
  /**
954
- * <p>End time of a contact.</p>
955
+ * <p>End time of a contact in UTC.</p>
955
956
  */
956
957
  endTime?: Date;
957
958
  /**
@@ -1013,11 +1014,11 @@ export interface ReserveContactRequest {
1013
1014
  */
1014
1015
  satelliteArn: string | undefined;
1015
1016
  /**
1016
- * <p>Start time of a contact.</p>
1017
+ * <p>Start time of a contact in UTC.</p>
1017
1018
  */
1018
1019
  startTime: Date | undefined;
1019
1020
  /**
1020
- * <p>End time of a contact.</p>
1021
+ * <p>End time of a contact in UTC.</p>
1021
1022
  */
1022
1023
  endTime: Date | undefined;
1023
1024
  /**
@@ -1051,6 +1052,155 @@ export interface DataflowEndpointGroupIdResponse {
1051
1052
  */
1052
1053
  dataflowEndpointGroupId?: string;
1053
1054
  }
1055
+ /**
1056
+ * <p>Object stored in S3 containing ephemeris data.</p>
1057
+ */
1058
+ export interface S3Object {
1059
+ /**
1060
+ * <p>An Amazon S3 Bucket name.</p>
1061
+ */
1062
+ bucket?: string;
1063
+ /**
1064
+ * <p>An Amazon S3 key for the ephemeris.</p>
1065
+ */
1066
+ key?: string;
1067
+ /**
1068
+ * <p>For versioned S3 objects, the version to use for the ephemeris.</p>
1069
+ */
1070
+ version?: string;
1071
+ }
1072
+ /**
1073
+ * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p>
1074
+ */
1075
+ export interface OEMEphemeris {
1076
+ /**
1077
+ * <p>Identifies the S3 object to be used as the ephemeris.</p>
1078
+ */
1079
+ s3Object?: S3Object;
1080
+ /**
1081
+ * <p>The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.</p>
1082
+ */
1083
+ oemData?: string;
1084
+ }
1085
+ /**
1086
+ * <p>A time range with a start and end time.</p>
1087
+ */
1088
+ export interface TimeRange {
1089
+ /**
1090
+ * <p>Time in UTC at which the time range starts.</p>
1091
+ */
1092
+ startTime: Date | undefined;
1093
+ /**
1094
+ * <p>Time in UTC at which the time range ends.</p>
1095
+ */
1096
+ endTime: Date | undefined;
1097
+ }
1098
+ /**
1099
+ * <p>Two-line element set (TLE) data.</p>
1100
+ */
1101
+ export interface TLEData {
1102
+ /**
1103
+ * <p>First line of two-line element set (TLE) data.</p>
1104
+ */
1105
+ tleLine1: string | undefined;
1106
+ /**
1107
+ * <p>Second line of two-line element set (TLE) data.</p>
1108
+ */
1109
+ tleLine2: string | undefined;
1110
+ /**
1111
+ * <p>The valid time range for the TLE. Gaps or overlap are not permitted.</p>
1112
+ */
1113
+ validTimeRange: TimeRange | undefined;
1114
+ }
1115
+ /**
1116
+ * <p>Two-line element set (TLE) ephemeris.</p>
1117
+ */
1118
+ export interface TLEEphemeris {
1119
+ /**
1120
+ * <p>Identifies the S3 object to be used as the ephemeris.</p>
1121
+ */
1122
+ s3Object?: S3Object;
1123
+ /**
1124
+ * <p>The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.</p>
1125
+ */
1126
+ tleData?: TLEData[];
1127
+ }
1128
+ /**
1129
+ * <p>Ephemeris data.</p>
1130
+ */
1131
+ export declare type EphemerisData = EphemerisData.OemMember | EphemerisData.TleMember | EphemerisData.$UnknownMember;
1132
+ export declare namespace EphemerisData {
1133
+ /**
1134
+ * <p>Two-line element set (TLE) ephemeris.</p>
1135
+ */
1136
+ interface TleMember {
1137
+ tle: TLEEphemeris;
1138
+ oem?: never;
1139
+ $unknown?: never;
1140
+ }
1141
+ /**
1142
+ * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p>
1143
+ */
1144
+ interface OemMember {
1145
+ tle?: never;
1146
+ oem: OEMEphemeris;
1147
+ $unknown?: never;
1148
+ }
1149
+ interface $UnknownMember {
1150
+ tle?: never;
1151
+ oem?: never;
1152
+ $unknown: [string, any];
1153
+ }
1154
+ interface Visitor<T> {
1155
+ tle: (value: TLEEphemeris) => T;
1156
+ oem: (value: OEMEphemeris) => T;
1157
+ _: (name: string, value: any) => T;
1158
+ }
1159
+ const visit: <T>(value: EphemerisData, visitor: Visitor<T>) => T;
1160
+ }
1161
+ export interface CreateEphemerisRequest {
1162
+ /**
1163
+ * <p>AWS Ground Station satellite ID for this ephemeris.</p>
1164
+ */
1165
+ satelliteId: string | undefined;
1166
+ /**
1167
+ * <p>Whether to set the ephemeris status to <code>ENABLED</code> after validation.</p>
1168
+ * <p>Setting this to false will set the ephemeris status to <code>DISABLED</code> after validation.</p>
1169
+ */
1170
+ enabled?: boolean;
1171
+ /**
1172
+ * <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
1173
+ * <p>The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.</p>
1174
+ * <p>Priority must be 1 or greater</p>
1175
+ */
1176
+ priority?: number;
1177
+ /**
1178
+ * <p>An overall expiration time for the ephemeris in UTC, after which it will become <code>EXPIRED</code>.</p>
1179
+ */
1180
+ expirationTime?: Date;
1181
+ /**
1182
+ * <p>A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.</p>
1183
+ */
1184
+ name: string | undefined;
1185
+ /**
1186
+ * <p>The ARN of a KMS key used to encrypt the ephemeris in Ground Station.</p>
1187
+ */
1188
+ kmsKeyArn?: string;
1189
+ /**
1190
+ * <p>Ephemeris data.</p>
1191
+ */
1192
+ ephemeris?: EphemerisData;
1193
+ /**
1194
+ * <p>Tags assigned to an ephemeris.</p>
1195
+ */
1196
+ tags?: Record<string, string>;
1197
+ }
1198
+ export interface EphemerisIdResponse {
1199
+ /**
1200
+ * <p>The AWS Ground Station ephemeris ID.</p>
1201
+ */
1202
+ ephemerisId?: string;
1203
+ }
1054
1204
  /**
1055
1205
  * <p/>
1056
1206
  */
@@ -1173,6 +1323,12 @@ export interface ListDataflowEndpointGroupsResponse {
1173
1323
  */
1174
1324
  dataflowEndpointGroupList?: DataflowEndpointListItem[];
1175
1325
  }
1326
+ export interface DeleteEphemerisRequest {
1327
+ /**
1328
+ * <p>The AWS Ground Station ephemeris ID.</p>
1329
+ */
1330
+ ephemerisId: string | undefined;
1331
+ }
1176
1332
  /**
1177
1333
  * <p/>
1178
1334
  */
@@ -1182,6 +1338,251 @@ export interface DeleteMissionProfileRequest {
1182
1338
  */
1183
1339
  missionProfileId: string | undefined;
1184
1340
  }
1341
+ export interface DescribeEphemerisRequest {
1342
+ /**
1343
+ * <p>The AWS Ground Station ephemeris ID.</p>
1344
+ */
1345
+ ephemerisId: string | undefined;
1346
+ }
1347
+ export declare enum EphemerisInvalidReason {
1348
+ /**
1349
+ * Provided KMS key is invalid
1350
+ */
1351
+ KMS_KEY_INVALID = "KMS_KEY_INVALID",
1352
+ /**
1353
+ * Provided spacecraft identifiers such as spacecraft NORAD Id are invalid
1354
+ */
1355
+ METADATA_INVALID = "METADATA_INVALID",
1356
+ /**
1357
+ * Start, end, or expiration time(s) are invalid for the provided ephemeris
1358
+ */
1359
+ TIME_RANGE_INVALID = "TIME_RANGE_INVALID",
1360
+ /**
1361
+ * Provided ephemeris defines invalid spacecraft trajectory
1362
+ */
1363
+ TRAJECTORY_INVALID = "TRAJECTORY_INVALID",
1364
+ /**
1365
+ * Internal Service Error occurred while processing ephemeris
1366
+ */
1367
+ VALIDATION_ERROR = "VALIDATION_ERROR"
1368
+ }
1369
+ export declare enum EphemerisStatus {
1370
+ DISABLED = "DISABLED",
1371
+ ENABLED = "ENABLED",
1372
+ ERROR = "ERROR",
1373
+ EXPIRED = "EXPIRED",
1374
+ INVALID = "INVALID",
1375
+ VALIDATING = "VALIDATING"
1376
+ }
1377
+ /**
1378
+ * <p>Description of ephemeris.</p>
1379
+ */
1380
+ export interface EphemerisDescription {
1381
+ /**
1382
+ * <p>Source S3 object used for the ephemeris.</p>
1383
+ */
1384
+ sourceS3Object?: S3Object;
1385
+ /**
1386
+ * <p>Supplied ephemeris data.</p>
1387
+ */
1388
+ ephemerisData?: string;
1389
+ }
1390
+ /**
1391
+ * <p/>
1392
+ */
1393
+ export declare type EphemerisTypeDescription = EphemerisTypeDescription.OemMember | EphemerisTypeDescription.TleMember | EphemerisTypeDescription.$UnknownMember;
1394
+ export declare namespace EphemerisTypeDescription {
1395
+ /**
1396
+ * <p>Description of ephemeris.</p>
1397
+ */
1398
+ interface TleMember {
1399
+ tle: EphemerisDescription;
1400
+ oem?: never;
1401
+ $unknown?: never;
1402
+ }
1403
+ /**
1404
+ * <p>Description of ephemeris.</p>
1405
+ */
1406
+ interface OemMember {
1407
+ tle?: never;
1408
+ oem: EphemerisDescription;
1409
+ $unknown?: never;
1410
+ }
1411
+ interface $UnknownMember {
1412
+ tle?: never;
1413
+ oem?: never;
1414
+ $unknown: [string, any];
1415
+ }
1416
+ interface Visitor<T> {
1417
+ tle: (value: EphemerisDescription) => T;
1418
+ oem: (value: EphemerisDescription) => T;
1419
+ _: (name: string, value: any) => T;
1420
+ }
1421
+ const visit: <T>(value: EphemerisTypeDescription, visitor: Visitor<T>) => T;
1422
+ }
1423
+ export interface DescribeEphemerisResponse {
1424
+ /**
1425
+ * <p>The AWS Ground Station ephemeris ID.</p>
1426
+ */
1427
+ ephemerisId?: string;
1428
+ /**
1429
+ * <p>The AWS Ground Station satellite ID associated with ephemeris.</p>
1430
+ */
1431
+ satelliteId?: string;
1432
+ /**
1433
+ * <p>The status of the ephemeris.</p>
1434
+ */
1435
+ status?: EphemerisStatus | string;
1436
+ /**
1437
+ * <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
1438
+ * <p>The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.</p>
1439
+ * <p>Priority must be 1 or greater</p>
1440
+ */
1441
+ priority?: number;
1442
+ /**
1443
+ * <p>The time the ephemeris was uploaded in UTC.</p>
1444
+ */
1445
+ creationTime?: Date;
1446
+ /**
1447
+ * <p>Whether or not the ephemeris is enabled.</p>
1448
+ */
1449
+ enabled?: boolean;
1450
+ /**
1451
+ * <p>A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.</p>
1452
+ */
1453
+ name?: string;
1454
+ /**
1455
+ * <p>Tags assigned to an ephemeris.</p>
1456
+ */
1457
+ tags?: Record<string, string>;
1458
+ /**
1459
+ * <p>Supplied ephemeris data.</p>
1460
+ */
1461
+ suppliedData?: EphemerisTypeDescription;
1462
+ /**
1463
+ * <p>Reason that an ephemeris failed validation. Only provided for ephemerides with <code>INVALID</code> status.</p>
1464
+ */
1465
+ invalidReason?: EphemerisInvalidReason | string;
1466
+ }
1467
+ /**
1468
+ * <p>Ephemeris item.</p>
1469
+ */
1470
+ export interface EphemerisItem {
1471
+ /**
1472
+ * <p>The AWS Ground Station ephemeris ID.</p>
1473
+ */
1474
+ ephemerisId?: string;
1475
+ /**
1476
+ * <p>The status of the ephemeris.</p>
1477
+ */
1478
+ status?: EphemerisStatus | string;
1479
+ /**
1480
+ * <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
1481
+ * <p>The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.</p>
1482
+ * <p>Priority must be 1 or greater</p>
1483
+ */
1484
+ priority?: number;
1485
+ /**
1486
+ * <p>Whether or not the ephemeris is enabled.</p>
1487
+ */
1488
+ enabled?: boolean;
1489
+ /**
1490
+ * <p>The time the ephemeris was uploaded in UTC.</p>
1491
+ */
1492
+ creationTime?: Date;
1493
+ /**
1494
+ * <p>A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.</p>
1495
+ */
1496
+ name?: string;
1497
+ /**
1498
+ * <p>Source S3 object used for the ephemeris.</p>
1499
+ */
1500
+ sourceS3Object?: S3Object;
1501
+ }
1502
+ export interface ListEphemeridesRequest {
1503
+ /**
1504
+ * <p>The AWS Ground Station satellite ID to list ephemeris for.</p>
1505
+ */
1506
+ satelliteId: string | undefined;
1507
+ /**
1508
+ * <p>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 <code>startTime</code> and <code>endTime</code>.</p>
1509
+ */
1510
+ startTime: Date | undefined;
1511
+ /**
1512
+ * <p>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 <code>startTime</code> and <code>endTime</code>.</p>
1513
+ */
1514
+ endTime: Date | undefined;
1515
+ /**
1516
+ * <p>The list of ephemeris status to return.</p>
1517
+ */
1518
+ statusList?: (EphemerisStatus | string)[];
1519
+ /**
1520
+ * <p>Maximum number of ephemerides to return.</p>
1521
+ */
1522
+ maxResults?: number;
1523
+ /**
1524
+ * <p>Pagination token.</p>
1525
+ */
1526
+ nextToken?: string;
1527
+ }
1528
+ export interface ListEphemeridesResponse {
1529
+ /**
1530
+ * <p>Pagination token.</p>
1531
+ */
1532
+ nextToken?: string;
1533
+ /**
1534
+ * <p>List of ephemerides.</p>
1535
+ */
1536
+ ephemerides?: EphemerisItem[];
1537
+ }
1538
+ export interface UpdateEphemerisRequest {
1539
+ /**
1540
+ * <p>The AWS Ground Station ephemeris ID.</p>
1541
+ */
1542
+ ephemerisId: string | undefined;
1543
+ /**
1544
+ * <p>Whether the ephemeris is enabled or not. Changing this value will not require the ephemeris to be re-validated.</p>
1545
+ */
1546
+ enabled: boolean | undefined;
1547
+ /**
1548
+ * <p>A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.</p>
1549
+ */
1550
+ name?: string;
1551
+ /**
1552
+ * <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
1553
+ * <p>The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.</p>
1554
+ * <p>Priority must be 1 or greater</p>
1555
+ */
1556
+ priority?: number;
1557
+ }
1558
+ export declare enum EphemerisSource {
1559
+ CUSTOMER_PROVIDED = "CUSTOMER_PROVIDED",
1560
+ SPACE_TRACK = "SPACE_TRACK"
1561
+ }
1562
+ /**
1563
+ * <p>Metadata describing a particular ephemeris.</p>
1564
+ */
1565
+ export interface EphemerisMetaData {
1566
+ /**
1567
+ * <p>The <code>EphemerisSource</code> that generated a given ephemeris.</p>
1568
+ */
1569
+ source: EphemerisSource | string | undefined;
1570
+ /**
1571
+ * <p>UUID of a customer-provided ephemeris.</p>
1572
+ * <p>This field is not populated for default ephemerides from Space Track.</p>
1573
+ */
1574
+ ephemerisId?: string;
1575
+ /**
1576
+ * <p>The epoch of a default, ephemeris from Space Track in UTC.</p>
1577
+ * <p>This field is not populated for customer-provided ephemerides.</p>
1578
+ */
1579
+ epoch?: Date;
1580
+ /**
1581
+ * <p>A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.</p>
1582
+ * <p>A name is only returned for customer-provider ephemerides that have a name associated.</p>
1583
+ */
1584
+ name?: string;
1585
+ }
1185
1586
  /**
1186
1587
  * <p/>
1187
1588
  */
@@ -1305,6 +1706,10 @@ export interface GetSatelliteResponse {
1305
1706
  * <p>A list of ground stations to which the satellite is on-boarded.</p>
1306
1707
  */
1307
1708
  groundStations?: string[];
1709
+ /**
1710
+ * <p>The current ephemeris being used to compute the trajectory of the satellite.</p>
1711
+ */
1712
+ currentEphemeris?: EphemerisMetaData;
1308
1713
  }
1309
1714
  /**
1310
1715
  * <p/>
@@ -1486,6 +1891,10 @@ export interface SatelliteListItem {
1486
1891
  * <p>A list of ground stations to which the satellite is on-boarded.</p>
1487
1892
  */
1488
1893
  groundStations?: string[];
1894
+ /**
1895
+ * <p>The current ephemeris being used to compute the trajectory of the satellite.</p>
1896
+ */
1897
+ currentEphemeris?: EphemerisMetaData;
1489
1898
  }
1490
1899
  /**
1491
1900
  * <p/>
@@ -1716,6 +2125,38 @@ export declare const CreateDataflowEndpointGroupRequestFilterSensitiveLog: (obj:
1716
2125
  * @internal
1717
2126
  */
1718
2127
  export declare const DataflowEndpointGroupIdResponseFilterSensitiveLog: (obj: DataflowEndpointGroupIdResponse) => any;
2128
+ /**
2129
+ * @internal
2130
+ */
2131
+ export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
2132
+ /**
2133
+ * @internal
2134
+ */
2135
+ export declare const OEMEphemerisFilterSensitiveLog: (obj: OEMEphemeris) => any;
2136
+ /**
2137
+ * @internal
2138
+ */
2139
+ export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
2140
+ /**
2141
+ * @internal
2142
+ */
2143
+ export declare const TLEDataFilterSensitiveLog: (obj: TLEData) => any;
2144
+ /**
2145
+ * @internal
2146
+ */
2147
+ export declare const TLEEphemerisFilterSensitiveLog: (obj: TLEEphemeris) => any;
2148
+ /**
2149
+ * @internal
2150
+ */
2151
+ export declare const EphemerisDataFilterSensitiveLog: (obj: EphemerisData) => any;
2152
+ /**
2153
+ * @internal
2154
+ */
2155
+ export declare const CreateEphemerisRequestFilterSensitiveLog: (obj: CreateEphemerisRequest) => any;
2156
+ /**
2157
+ * @internal
2158
+ */
2159
+ export declare const EphemerisIdResponseFilterSensitiveLog: (obj: EphemerisIdResponse) => any;
1719
2160
  /**
1720
2161
  * @internal
1721
2162
  */
@@ -1748,10 +2189,50 @@ export declare const DataflowEndpointListItemFilterSensitiveLog: (obj: DataflowE
1748
2189
  * @internal
1749
2190
  */
1750
2191
  export declare const ListDataflowEndpointGroupsResponseFilterSensitiveLog: (obj: ListDataflowEndpointGroupsResponse) => any;
2192
+ /**
2193
+ * @internal
2194
+ */
2195
+ export declare const DeleteEphemerisRequestFilterSensitiveLog: (obj: DeleteEphemerisRequest) => any;
1751
2196
  /**
1752
2197
  * @internal
1753
2198
  */
1754
2199
  export declare const DeleteMissionProfileRequestFilterSensitiveLog: (obj: DeleteMissionProfileRequest) => any;
2200
+ /**
2201
+ * @internal
2202
+ */
2203
+ export declare const DescribeEphemerisRequestFilterSensitiveLog: (obj: DescribeEphemerisRequest) => any;
2204
+ /**
2205
+ * @internal
2206
+ */
2207
+ export declare const EphemerisDescriptionFilterSensitiveLog: (obj: EphemerisDescription) => any;
2208
+ /**
2209
+ * @internal
2210
+ */
2211
+ export declare const EphemerisTypeDescriptionFilterSensitiveLog: (obj: EphemerisTypeDescription) => any;
2212
+ /**
2213
+ * @internal
2214
+ */
2215
+ export declare const DescribeEphemerisResponseFilterSensitiveLog: (obj: DescribeEphemerisResponse) => any;
2216
+ /**
2217
+ * @internal
2218
+ */
2219
+ export declare const EphemerisItemFilterSensitiveLog: (obj: EphemerisItem) => any;
2220
+ /**
2221
+ * @internal
2222
+ */
2223
+ export declare const ListEphemeridesRequestFilterSensitiveLog: (obj: ListEphemeridesRequest) => any;
2224
+ /**
2225
+ * @internal
2226
+ */
2227
+ export declare const ListEphemeridesResponseFilterSensitiveLog: (obj: ListEphemeridesResponse) => any;
2228
+ /**
2229
+ * @internal
2230
+ */
2231
+ export declare const UpdateEphemerisRequestFilterSensitiveLog: (obj: UpdateEphemerisRequest) => any;
2232
+ /**
2233
+ * @internal
2234
+ */
2235
+ export declare const EphemerisMetaDataFilterSensitiveLog: (obj: EphemerisMetaData) => any;
1755
2236
  /**
1756
2237
  * @internal
1757
2238
  */
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListEphemeridesCommandInput, ListEphemeridesCommandOutput } from "../commands/ListEphemeridesCommand";
3
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListEphemerides(config: GroundStationPaginationConfiguration, input: ListEphemeridesCommandInput, ...additionalArguments: any): Paginator<ListEphemeridesCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./Interfaces";
2
2
  export * from "./ListConfigsPaginator";
3
3
  export * from "./ListContactsPaginator";
4
4
  export * from "./ListDataflowEndpointGroupsPaginator";
5
+ export * from "./ListEphemeridesPaginator";
5
6
  export * from "./ListGroundStationsPaginator";
6
7
  export * from "./ListMissionProfilesPaginator";
7
8
  export * from "./ListSatellitesPaginator";