@aws-sdk/client-groundstation 3.1030.0 → 3.1032.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.
- package/README.md +35 -0
- package/dist-cjs/index.js +158 -2
- package/dist-cjs/schemas/schemas_0.js +174 -13
- package/dist-es/GroundStation.js +18 -0
- package/dist-es/commands/DescribeContactVersionCommand.js +16 -0
- package/dist-es/commands/ListAntennasCommand.js +16 -0
- package/dist-es/commands/ListContactVersionsCommand.js +16 -0
- package/dist-es/commands/ListGroundStationReservationsCommand.js +16 -0
- package/dist-es/commands/UpdateContactCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/pagination/ListAntennasPaginator.js +4 -0
- package/dist-es/pagination/ListContactVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListGroundStationReservationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +169 -9
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForContactUpdated.js +40 -0
- package/dist-types/GroundStation.d.ts +62 -0
- package/dist-types/GroundStationClient.d.ts +7 -2
- package/dist-types/commands/CancelContactCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +18 -0
- package/dist-types/commands/DescribeContactVersionCommand.d.ts +331 -0
- package/dist-types/commands/ListAntennasCommand.d.ts +89 -0
- package/dist-types/commands/ListContactVersionsCommand.d.ts +99 -0
- package/dist-types/commands/ListContactsCommand.d.ts +12 -0
- package/dist-types/commands/ListGroundStationReservationsCommand.d.ts +104 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +7 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +77 -5
- package/dist-types/models/errors.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +572 -64
- package/dist-types/pagination/ListAntennasPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContactVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroundStationReservationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/GroundStation.d.ts +115 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DescribeContactVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAntennasCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContactVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGroundStationReservationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -1
- package/dist-types/ts3.4/pagination/ListAntennasPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContactVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroundStationReservationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForContactUpdated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForContactUpdated.d.ts +14 -0
- package/package.json +34 -34
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AgentStatus, AngleUnits, AuditResults, BandwidthUnits, CapabilityHealth, CapabilityHealthReason, ConfigCapabilityType, ContactStatus, Criticality, EirpUnits, EndpointStatus, EphemerisErrorCode, EphemerisInvalidReason, EphemerisSource, EphemerisStatus, EphemerisType, FrequencyUnits, Polarization, TelemetrySinkType } from "./enums";
|
|
1
|
+
import type { AgentStatus, AngleUnits, AuditResults, BandwidthUnits, CapabilityHealth, CapabilityHealthReason, ConfigCapabilityType, ContactStatus, Criticality, EirpUnits, EndpointStatus, EphemerisErrorCode, EphemerisInvalidReason, EphemerisSource, EphemerisStatus, EphemerisType, FrequencyUnits, MaintenanceType, Polarization, ReservationType, TelemetrySinkType, VersionFailureReasonCode, VersionStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -337,6 +337,27 @@ export interface AntennaDownlinkDemodDecodeConfig {
|
|
|
337
337
|
*/
|
|
338
338
|
decodeConfig: DecodeConfig | undefined;
|
|
339
339
|
}
|
|
340
|
+
/**
|
|
341
|
+
* <p>An antenna at a ground station.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
export interface AntennaListItem {
|
|
345
|
+
/**
|
|
346
|
+
* <p>Name of the ground station the antenna is associated with.</p>
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
groundStationName: string | undefined;
|
|
350
|
+
/**
|
|
351
|
+
* <p>Name of the antenna.</p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
antennaName: string | undefined;
|
|
355
|
+
/**
|
|
356
|
+
* <p>Region of the antenna.</p>
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
region: string | undefined;
|
|
360
|
+
}
|
|
340
361
|
/**
|
|
341
362
|
* <p>Information about the uplink spectral <code>Config</code>.</p>
|
|
342
363
|
* @public
|
|
@@ -680,7 +701,7 @@ export interface AzElProgramTrackSettings {
|
|
|
680
701
|
ephemerisId: string | undefined;
|
|
681
702
|
}
|
|
682
703
|
/**
|
|
683
|
-
* <p> </p>
|
|
704
|
+
* <p>Input for the <code>CancelContact</code> operation. </p>
|
|
684
705
|
* @public
|
|
685
706
|
*/
|
|
686
707
|
export interface CancelContactRequest {
|
|
@@ -691,7 +712,7 @@ export interface CancelContactRequest {
|
|
|
691
712
|
contactId: string | undefined;
|
|
692
713
|
}
|
|
693
714
|
/**
|
|
694
|
-
* <p> </p>
|
|
715
|
+
* <p>Response containing the ID of a contact. </p>
|
|
695
716
|
* @public
|
|
696
717
|
*/
|
|
697
718
|
export interface ContactIdResponse {
|
|
@@ -700,9 +721,14 @@ export interface ContactIdResponse {
|
|
|
700
721
|
* @public
|
|
701
722
|
*/
|
|
702
723
|
contactId?: string | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* <p>Version ID of a contact.</p>
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
versionId?: number | undefined;
|
|
703
729
|
}
|
|
704
730
|
/**
|
|
705
|
-
* <p> </p>
|
|
731
|
+
* <p>Response containing the ARN, ID, and type of a <code>Config</code>. </p>
|
|
706
732
|
* @public
|
|
707
733
|
*/
|
|
708
734
|
export interface ConfigIdResponse {
|
|
@@ -1011,7 +1037,7 @@ export declare namespace ConfigTypeData {
|
|
|
1011
1037
|
}
|
|
1012
1038
|
}
|
|
1013
1039
|
/**
|
|
1014
|
-
* <p> </p>
|
|
1040
|
+
* <p>Input for the <code>CreateConfig</code> operation. </p>
|
|
1015
1041
|
* @public
|
|
1016
1042
|
*/
|
|
1017
1043
|
export interface CreateConfigRequest {
|
|
@@ -1032,7 +1058,7 @@ export interface CreateConfigRequest {
|
|
|
1032
1058
|
tags?: Record<string, string> | undefined;
|
|
1033
1059
|
}
|
|
1034
1060
|
/**
|
|
1035
|
-
* <p> </p>
|
|
1061
|
+
* <p>Input for the <code>DeleteConfig</code> operation. </p>
|
|
1036
1062
|
* @public
|
|
1037
1063
|
*/
|
|
1038
1064
|
export interface DeleteConfigRequest {
|
|
@@ -1048,7 +1074,7 @@ export interface DeleteConfigRequest {
|
|
|
1048
1074
|
configType: ConfigCapabilityType | undefined;
|
|
1049
1075
|
}
|
|
1050
1076
|
/**
|
|
1051
|
-
* <p> </p>
|
|
1077
|
+
* <p>Input for the <code>GetConfig</code> operation. </p>
|
|
1052
1078
|
* @public
|
|
1053
1079
|
*/
|
|
1054
1080
|
export interface GetConfigRequest {
|
|
@@ -1064,7 +1090,7 @@ export interface GetConfigRequest {
|
|
|
1064
1090
|
configType: ConfigCapabilityType | undefined;
|
|
1065
1091
|
}
|
|
1066
1092
|
/**
|
|
1067
|
-
* <p> </p>
|
|
1093
|
+
* <p>Output for the <code>GetConfig</code> operation. </p>
|
|
1068
1094
|
* @public
|
|
1069
1095
|
*/
|
|
1070
1096
|
export interface GetConfigResponse {
|
|
@@ -1100,7 +1126,7 @@ export interface GetConfigResponse {
|
|
|
1100
1126
|
tags?: Record<string, string> | undefined;
|
|
1101
1127
|
}
|
|
1102
1128
|
/**
|
|
1103
|
-
* <p> </p>
|
|
1129
|
+
* <p>Input for the <code>ListConfigs</code> operation. </p>
|
|
1104
1130
|
* @public
|
|
1105
1131
|
*/
|
|
1106
1132
|
export interface ListConfigsRequest {
|
|
@@ -1142,7 +1168,7 @@ export interface ConfigListItem {
|
|
|
1142
1168
|
name?: string | undefined;
|
|
1143
1169
|
}
|
|
1144
1170
|
/**
|
|
1145
|
-
* <p> </p>
|
|
1171
|
+
* <p>Output for the <code>ListConfigs</code> operation. </p>
|
|
1146
1172
|
* @public
|
|
1147
1173
|
*/
|
|
1148
1174
|
export interface ListConfigsResponse {
|
|
@@ -1158,7 +1184,7 @@ export interface ListConfigsResponse {
|
|
|
1158
1184
|
configList?: ConfigListItem[] | undefined;
|
|
1159
1185
|
}
|
|
1160
1186
|
/**
|
|
1161
|
-
* <p> </p>
|
|
1187
|
+
* <p>Input for the <code>UpdateConfig</code> operation. </p>
|
|
1162
1188
|
* @public
|
|
1163
1189
|
*/
|
|
1164
1190
|
export interface UpdateConfigRequest {
|
|
@@ -1497,7 +1523,7 @@ export declare namespace ConfigDetails {
|
|
|
1497
1523
|
}
|
|
1498
1524
|
}
|
|
1499
1525
|
/**
|
|
1500
|
-
* <p> </p>
|
|
1526
|
+
* <p>Input for the <code>DescribeContact</code> operation. </p>
|
|
1501
1527
|
* @public
|
|
1502
1528
|
*/
|
|
1503
1529
|
export interface DescribeContactRequest {
|
|
@@ -1612,11 +1638,33 @@ export interface Elevation {
|
|
|
1612
1638
|
*/
|
|
1613
1639
|
unit: AngleUnits | undefined;
|
|
1614
1640
|
}
|
|
1641
|
+
/**
|
|
1642
|
+
* <p>Program track settings for <a>OEMEphemeris</a>.</p>
|
|
1643
|
+
* @public
|
|
1644
|
+
*/
|
|
1645
|
+
export interface OemProgramTrackSettings {
|
|
1646
|
+
/**
|
|
1647
|
+
* <p>Unique identifier of the OEM ephemeris.</p>
|
|
1648
|
+
* @public
|
|
1649
|
+
*/
|
|
1650
|
+
ephemerisId: string | undefined;
|
|
1651
|
+
}
|
|
1652
|
+
/**
|
|
1653
|
+
* <p>Program track settings for <a>TLEEphemeris</a>.</p>
|
|
1654
|
+
* @public
|
|
1655
|
+
*/
|
|
1656
|
+
export interface TleProgramTrackSettings {
|
|
1657
|
+
/**
|
|
1658
|
+
* <p>Unique identifier of the TLE ephemeris.</p>
|
|
1659
|
+
* @public
|
|
1660
|
+
*/
|
|
1661
|
+
ephemerisId: string | undefined;
|
|
1662
|
+
}
|
|
1615
1663
|
/**
|
|
1616
1664
|
* <p>Program track settings for an antenna during a contact.</p>
|
|
1617
1665
|
* @public
|
|
1618
1666
|
*/
|
|
1619
|
-
export type ProgramTrackSettings = ProgramTrackSettings.AzElMember | ProgramTrackSettings.$UnknownMember;
|
|
1667
|
+
export type ProgramTrackSettings = ProgramTrackSettings.AzElMember | ProgramTrackSettings.OemMember | ProgramTrackSettings.TleMember | ProgramTrackSettings.$UnknownMember;
|
|
1620
1668
|
/**
|
|
1621
1669
|
* @public
|
|
1622
1670
|
*/
|
|
@@ -1627,6 +1675,28 @@ export declare namespace ProgramTrackSettings {
|
|
|
1627
1675
|
*/
|
|
1628
1676
|
interface AzElMember {
|
|
1629
1677
|
azEl: AzElProgramTrackSettings;
|
|
1678
|
+
oem?: never;
|
|
1679
|
+
tle?: never;
|
|
1680
|
+
$unknown?: never;
|
|
1681
|
+
}
|
|
1682
|
+
/**
|
|
1683
|
+
* <p>Program track settings for <a>OEMEphemeris</a>.</p>
|
|
1684
|
+
* @public
|
|
1685
|
+
*/
|
|
1686
|
+
interface OemMember {
|
|
1687
|
+
azEl?: never;
|
|
1688
|
+
oem: OemProgramTrackSettings;
|
|
1689
|
+
tle?: never;
|
|
1690
|
+
$unknown?: never;
|
|
1691
|
+
}
|
|
1692
|
+
/**
|
|
1693
|
+
* <p>Program track settings for <a>TLEEphemeris</a>.</p>
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1696
|
+
interface TleMember {
|
|
1697
|
+
azEl?: never;
|
|
1698
|
+
oem?: never;
|
|
1699
|
+
tle: TleProgramTrackSettings;
|
|
1630
1700
|
$unknown?: never;
|
|
1631
1701
|
}
|
|
1632
1702
|
/**
|
|
@@ -1634,6 +1704,8 @@ export declare namespace ProgramTrackSettings {
|
|
|
1634
1704
|
*/
|
|
1635
1705
|
interface $UnknownMember {
|
|
1636
1706
|
azEl?: never;
|
|
1707
|
+
oem?: never;
|
|
1708
|
+
tle?: never;
|
|
1637
1709
|
$unknown: [string, any];
|
|
1638
1710
|
}
|
|
1639
1711
|
/**
|
|
@@ -1642,6 +1714,8 @@ export declare namespace ProgramTrackSettings {
|
|
|
1642
1714
|
*/
|
|
1643
1715
|
interface Visitor<T> {
|
|
1644
1716
|
azEl: (value: AzElProgramTrackSettings) => T;
|
|
1717
|
+
oem: (value: OemProgramTrackSettings) => T;
|
|
1718
|
+
tle: (value: TleProgramTrackSettings) => T;
|
|
1645
1719
|
_: (name: string, value: any) => T;
|
|
1646
1720
|
}
|
|
1647
1721
|
}
|
|
@@ -1654,10 +1728,56 @@ export interface TrackingOverrides {
|
|
|
1654
1728
|
* <p>Program track settings to override for antenna tracking during the contact.</p>
|
|
1655
1729
|
* @public
|
|
1656
1730
|
*/
|
|
1657
|
-
programTrackSettings
|
|
1731
|
+
programTrackSettings?: ProgramTrackSettings | undefined;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
* <p>Version information for a contact.</p>
|
|
1735
|
+
* @public
|
|
1736
|
+
*/
|
|
1737
|
+
export interface ContactVersion {
|
|
1738
|
+
/**
|
|
1739
|
+
* <p>Version ID of a contact.</p>
|
|
1740
|
+
* @public
|
|
1741
|
+
*/
|
|
1742
|
+
versionId?: number | undefined;
|
|
1743
|
+
/**
|
|
1744
|
+
* <p>Time the contact version was created in UTC.</p>
|
|
1745
|
+
* @public
|
|
1746
|
+
*/
|
|
1747
|
+
created?: Date | undefined;
|
|
1748
|
+
/**
|
|
1749
|
+
* <p>Time the contact version was activated in UTC. A version is activated when it becomes the current active version of the contact.</p>
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1752
|
+
activated?: Date | undefined;
|
|
1753
|
+
/**
|
|
1754
|
+
* <p>Time the contact version was superseded in UTC. A version is superseded when a newer version becomes active.</p>
|
|
1755
|
+
* @public
|
|
1756
|
+
*/
|
|
1757
|
+
superseded?: Date | undefined;
|
|
1758
|
+
/**
|
|
1759
|
+
* <p>Time the contact version was last updated in UTC.</p>
|
|
1760
|
+
* @public
|
|
1761
|
+
*/
|
|
1762
|
+
lastUpdated?: Date | undefined;
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>Status of the contact version.</p>
|
|
1765
|
+
* @public
|
|
1766
|
+
*/
|
|
1767
|
+
status?: VersionStatus | undefined;
|
|
1768
|
+
/**
|
|
1769
|
+
* <p>List of failure codes for the contact version.</p>
|
|
1770
|
+
* @public
|
|
1771
|
+
*/
|
|
1772
|
+
failureCodes?: VersionFailureReasonCode[] | undefined;
|
|
1773
|
+
/**
|
|
1774
|
+
* <p>Failure message for the contact version.</p>
|
|
1775
|
+
* @public
|
|
1776
|
+
*/
|
|
1777
|
+
failureMessage?: string | undefined;
|
|
1658
1778
|
}
|
|
1659
1779
|
/**
|
|
1660
|
-
* <p> </p>
|
|
1780
|
+
* <p>Output for the <code>DescribeContact</code> operation. </p>
|
|
1661
1781
|
* @public
|
|
1662
1782
|
*/
|
|
1663
1783
|
export interface DescribeContactResponse {
|
|
@@ -1687,12 +1807,12 @@ export interface DescribeContactResponse {
|
|
|
1687
1807
|
*/
|
|
1688
1808
|
endTime?: Date | undefined;
|
|
1689
1809
|
/**
|
|
1690
|
-
* <p>
|
|
1810
|
+
* <p>Start time in UTC of the pre-pass period, at which you receive a CloudWatch event indicating an upcoming pass.</p>
|
|
1691
1811
|
* @public
|
|
1692
1812
|
*/
|
|
1693
1813
|
prePassStartTime?: Date | undefined;
|
|
1694
1814
|
/**
|
|
1695
|
-
* <p>
|
|
1815
|
+
* <p>End time in UTC of the post-pass period, at which you receive a CloudWatch event indicating the pass has finished.</p>
|
|
1696
1816
|
* @public
|
|
1697
1817
|
*/
|
|
1698
1818
|
postPassEndTime?: Date | undefined;
|
|
@@ -1722,7 +1842,7 @@ export interface DescribeContactResponse {
|
|
|
1722
1842
|
*/
|
|
1723
1843
|
tags?: Record<string, string> | undefined;
|
|
1724
1844
|
/**
|
|
1725
|
-
* <p>Region
|
|
1845
|
+
* <p>Region where the <code>ReserveContact</code> API was called to schedule this contact.</p>
|
|
1726
1846
|
* @public
|
|
1727
1847
|
*/
|
|
1728
1848
|
region?: string | undefined;
|
|
@@ -1732,12 +1852,12 @@ export interface DescribeContactResponse {
|
|
|
1732
1852
|
*/
|
|
1733
1853
|
dataflowList?: DataflowDetail[] | undefined;
|
|
1734
1854
|
/**
|
|
1735
|
-
* <p> Projected time in UTC your satellite will rise above the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts
|
|
1855
|
+
* <p> Projected time in UTC your satellite will rise above the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.</p>
|
|
1736
1856
|
* @public
|
|
1737
1857
|
*/
|
|
1738
1858
|
visibilityStartTime?: Date | undefined;
|
|
1739
1859
|
/**
|
|
1740
|
-
* <p> Projected time in UTC your satellite will set below the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts
|
|
1860
|
+
* <p> Projected time in UTC your satellite will set below the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.</p>
|
|
1741
1861
|
* @public
|
|
1742
1862
|
*/
|
|
1743
1863
|
visibilityEndTime?: Date | undefined;
|
|
@@ -1751,6 +1871,126 @@ export interface DescribeContactResponse {
|
|
|
1751
1871
|
* @public
|
|
1752
1872
|
*/
|
|
1753
1873
|
ephemeris?: EphemerisResponseData | undefined;
|
|
1874
|
+
/**
|
|
1875
|
+
* <p>Version information for a contact.</p>
|
|
1876
|
+
* @public
|
|
1877
|
+
*/
|
|
1878
|
+
version?: ContactVersion | undefined;
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* @public
|
|
1882
|
+
*/
|
|
1883
|
+
export interface DescribeContactVersionRequest {
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>UUID of a contact.</p>
|
|
1886
|
+
* @public
|
|
1887
|
+
*/
|
|
1888
|
+
contactId: string | undefined;
|
|
1889
|
+
/**
|
|
1890
|
+
* <p>Version ID of a contact.</p>
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1893
|
+
versionId: number | undefined;
|
|
1894
|
+
}
|
|
1895
|
+
/**
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
export interface DescribeContactVersionResponse {
|
|
1899
|
+
/**
|
|
1900
|
+
* <p>UUID of a contact.</p>
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1903
|
+
contactId?: string | undefined;
|
|
1904
|
+
/**
|
|
1905
|
+
* <p>ARN of the contact's mission profile.</p>
|
|
1906
|
+
* @public
|
|
1907
|
+
*/
|
|
1908
|
+
missionProfileArn?: string | undefined;
|
|
1909
|
+
/**
|
|
1910
|
+
* <p>ARN of a satellite.</p>
|
|
1911
|
+
* @public
|
|
1912
|
+
*/
|
|
1913
|
+
satelliteArn?: string | undefined;
|
|
1914
|
+
/**
|
|
1915
|
+
* <p>Start time of a contact in UTC.</p>
|
|
1916
|
+
* @public
|
|
1917
|
+
*/
|
|
1918
|
+
startTime?: Date | undefined;
|
|
1919
|
+
/**
|
|
1920
|
+
* <p>End time of a contact in UTC.</p>
|
|
1921
|
+
* @public
|
|
1922
|
+
*/
|
|
1923
|
+
endTime?: Date | undefined;
|
|
1924
|
+
/**
|
|
1925
|
+
* <p>Start time in UTC of the pre-pass period, at which you receive a CloudWatch event indicating an upcoming pass.</p>
|
|
1926
|
+
* @public
|
|
1927
|
+
*/
|
|
1928
|
+
prePassStartTime?: Date | undefined;
|
|
1929
|
+
/**
|
|
1930
|
+
* <p>End time in UTC of the post-pass period, at which you receive a CloudWatch event indicating the pass has finished.</p>
|
|
1931
|
+
* @public
|
|
1932
|
+
*/
|
|
1933
|
+
postPassEndTime?: Date | undefined;
|
|
1934
|
+
/**
|
|
1935
|
+
* <p>Ground station for a contact.</p>
|
|
1936
|
+
* @public
|
|
1937
|
+
*/
|
|
1938
|
+
groundStation?: string | undefined;
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>Status of a contact.</p>
|
|
1941
|
+
* @public
|
|
1942
|
+
*/
|
|
1943
|
+
contactStatus?: ContactStatus | undefined;
|
|
1944
|
+
/**
|
|
1945
|
+
* <p>Error message for a contact.</p>
|
|
1946
|
+
* @public
|
|
1947
|
+
*/
|
|
1948
|
+
errorMessage?: string | undefined;
|
|
1949
|
+
/**
|
|
1950
|
+
* <p>Maximum elevation angle of a contact.</p>
|
|
1951
|
+
* @public
|
|
1952
|
+
*/
|
|
1953
|
+
maximumElevation?: Elevation | undefined;
|
|
1954
|
+
/**
|
|
1955
|
+
* <p>Tags assigned to a contact.</p>
|
|
1956
|
+
* @public
|
|
1957
|
+
*/
|
|
1958
|
+
tags?: Record<string, string> | undefined;
|
|
1959
|
+
/**
|
|
1960
|
+
* <p>Region where the <code>ReserveContact</code> API was called to schedule this contact.</p>
|
|
1961
|
+
* @public
|
|
1962
|
+
*/
|
|
1963
|
+
region?: string | undefined;
|
|
1964
|
+
/**
|
|
1965
|
+
* <p>List describing source and destination details for each dataflow edge.</p>
|
|
1966
|
+
* @public
|
|
1967
|
+
*/
|
|
1968
|
+
dataflowList?: DataflowDetail[] | undefined;
|
|
1969
|
+
/**
|
|
1970
|
+
* <p> Projected time in UTC your satellite will rise above the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.</p>
|
|
1971
|
+
* @public
|
|
1972
|
+
*/
|
|
1973
|
+
visibilityStartTime?: Date | undefined;
|
|
1974
|
+
/**
|
|
1975
|
+
* <p> Projected time in UTC your satellite will set below the <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts.</p>
|
|
1976
|
+
* @public
|
|
1977
|
+
*/
|
|
1978
|
+
visibilityEndTime?: Date | undefined;
|
|
1979
|
+
/**
|
|
1980
|
+
* <p>Tracking configuration overrides applied to this contact version. For the initial version, these are the overrides specified when the contact was reserved. For subsequent versions, these are the overrides associated with that specific version update.</p>
|
|
1981
|
+
* @public
|
|
1982
|
+
*/
|
|
1983
|
+
trackingOverrides?: TrackingOverrides | undefined;
|
|
1984
|
+
/**
|
|
1985
|
+
* <p>The ephemeris that determines antenna pointing directions for the contact.</p>
|
|
1986
|
+
* @public
|
|
1987
|
+
*/
|
|
1988
|
+
ephemeris?: EphemerisResponseData | undefined;
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>Version information for a contact.</p>
|
|
1991
|
+
* @public
|
|
1992
|
+
*/
|
|
1993
|
+
version?: ContactVersion | undefined;
|
|
1754
1994
|
}
|
|
1755
1995
|
/**
|
|
1756
1996
|
* <p>Filter for selecting contacts that use a specific ephemeris".</p>
|
|
@@ -1786,7 +2026,7 @@ export declare namespace EphemerisFilter {
|
|
|
1786
2026
|
}
|
|
1787
2027
|
}
|
|
1788
2028
|
/**
|
|
1789
|
-
* <p> </p>
|
|
2029
|
+
* <p>Input for the <code>ListContacts</code> operation. </p>
|
|
1790
2030
|
* @public
|
|
1791
2031
|
*/
|
|
1792
2032
|
export interface ListContactsRequest {
|
|
@@ -1867,12 +2107,12 @@ export interface ContactData {
|
|
|
1867
2107
|
*/
|
|
1868
2108
|
endTime?: Date | undefined;
|
|
1869
2109
|
/**
|
|
1870
|
-
* <p>
|
|
2110
|
+
* <p>Start time in UTC of the pre-pass period, at which you receive a CloudWatch event indicating an upcoming pass.</p>
|
|
1871
2111
|
* @public
|
|
1872
2112
|
*/
|
|
1873
2113
|
prePassStartTime?: Date | undefined;
|
|
1874
2114
|
/**
|
|
1875
|
-
* <p>
|
|
2115
|
+
* <p>End time in UTC of the post-pass period, at which you receive a CloudWatch event indicating the pass has finished.</p>
|
|
1876
2116
|
* @public
|
|
1877
2117
|
*/
|
|
1878
2118
|
postPassEndTime?: Date | undefined;
|
|
@@ -1921,9 +2161,14 @@ export interface ContactData {
|
|
|
1921
2161
|
* @public
|
|
1922
2162
|
*/
|
|
1923
2163
|
ephemeris?: EphemerisResponseData | undefined;
|
|
2164
|
+
/**
|
|
2165
|
+
* <p>Version information for a contact.</p>
|
|
2166
|
+
* @public
|
|
2167
|
+
*/
|
|
2168
|
+
version?: ContactVersion | undefined;
|
|
1924
2169
|
}
|
|
1925
2170
|
/**
|
|
1926
|
-
* <p> </p>
|
|
2171
|
+
* <p>Output for the <code>ListContacts</code> operation. </p>
|
|
1927
2172
|
* @public
|
|
1928
2173
|
*/
|
|
1929
2174
|
export interface ListContactsResponse {
|
|
@@ -1939,7 +2184,42 @@ export interface ListContactsResponse {
|
|
|
1939
2184
|
contactList?: ContactData[] | undefined;
|
|
1940
2185
|
}
|
|
1941
2186
|
/**
|
|
1942
|
-
*
|
|
2187
|
+
* @public
|
|
2188
|
+
*/
|
|
2189
|
+
export interface ListContactVersionsRequest {
|
|
2190
|
+
/**
|
|
2191
|
+
* <p>UUID of a contact.</p>
|
|
2192
|
+
* @public
|
|
2193
|
+
*/
|
|
2194
|
+
contactId: string | undefined;
|
|
2195
|
+
/**
|
|
2196
|
+
* <p>Maximum number of contact versions returned.</p>
|
|
2197
|
+
* @public
|
|
2198
|
+
*/
|
|
2199
|
+
maxResults?: number | undefined;
|
|
2200
|
+
/**
|
|
2201
|
+
* <p>Next token returned in the request of a previous <code>ListContactVersions</code> call. Used to get the next page of results.</p>
|
|
2202
|
+
* @public
|
|
2203
|
+
*/
|
|
2204
|
+
nextToken?: string | undefined;
|
|
2205
|
+
}
|
|
2206
|
+
/**
|
|
2207
|
+
* @public
|
|
2208
|
+
*/
|
|
2209
|
+
export interface ListContactVersionsResponse {
|
|
2210
|
+
/**
|
|
2211
|
+
* <p>Next token to be used in a subsequent <code>ListContactVersions</code> call to retrieve the next page of results.</p>
|
|
2212
|
+
* @public
|
|
2213
|
+
*/
|
|
2214
|
+
nextToken?: string | undefined;
|
|
2215
|
+
/**
|
|
2216
|
+
* <p>List of contact versions.</p>
|
|
2217
|
+
* @public
|
|
2218
|
+
*/
|
|
2219
|
+
contactVersionsList?: ContactVersion[] | undefined;
|
|
2220
|
+
}
|
|
2221
|
+
/**
|
|
2222
|
+
* <p>Input for the <code>ReserveContact</code> operation. </p>
|
|
1943
2223
|
* @public
|
|
1944
2224
|
*/
|
|
1945
2225
|
export interface ReserveContactRequest {
|
|
@@ -1980,7 +2260,58 @@ export interface ReserveContactRequest {
|
|
|
1980
2260
|
trackingOverrides?: TrackingOverrides | undefined;
|
|
1981
2261
|
}
|
|
1982
2262
|
/**
|
|
1983
|
-
*
|
|
2263
|
+
* @public
|
|
2264
|
+
*/
|
|
2265
|
+
export interface UpdateContactRequest {
|
|
2266
|
+
/**
|
|
2267
|
+
* <p>UUID of a contact.</p>
|
|
2268
|
+
* @public
|
|
2269
|
+
*/
|
|
2270
|
+
contactId: string | undefined;
|
|
2271
|
+
/**
|
|
2272
|
+
* <p>A client token is a unique, case-sensitive string of up to 64 ASCII characters. It is generated by the client to ensure idempotent operations, allowing safe retries without unintended side effects.</p>
|
|
2273
|
+
* @public
|
|
2274
|
+
*/
|
|
2275
|
+
clientToken?: string | undefined;
|
|
2276
|
+
/**
|
|
2277
|
+
* <p>Overrides the default tracking configuration on an antenna during a contact.</p>
|
|
2278
|
+
* @public
|
|
2279
|
+
*/
|
|
2280
|
+
trackingOverrides?: TrackingOverrides | undefined;
|
|
2281
|
+
/**
|
|
2282
|
+
* <p>ARN of a satellite.</p>
|
|
2283
|
+
* @public
|
|
2284
|
+
*/
|
|
2285
|
+
satelliteArn?: string | undefined;
|
|
2286
|
+
}
|
|
2287
|
+
/**
|
|
2288
|
+
* @public
|
|
2289
|
+
*/
|
|
2290
|
+
export interface UpdateContactResponse {
|
|
2291
|
+
/**
|
|
2292
|
+
* <p>UUID of a contact.</p>
|
|
2293
|
+
* @public
|
|
2294
|
+
*/
|
|
2295
|
+
contactId?: string | undefined;
|
|
2296
|
+
/**
|
|
2297
|
+
* <p>Version ID of a contact.</p>
|
|
2298
|
+
* @public
|
|
2299
|
+
*/
|
|
2300
|
+
versionId?: number | undefined;
|
|
2301
|
+
}
|
|
2302
|
+
/**
|
|
2303
|
+
* <p>Details of a contact reservation.</p>
|
|
2304
|
+
* @public
|
|
2305
|
+
*/
|
|
2306
|
+
export interface ContactReservationDetails {
|
|
2307
|
+
/**
|
|
2308
|
+
* <p>UUID of a contact.</p>
|
|
2309
|
+
* @public
|
|
2310
|
+
*/
|
|
2311
|
+
contactId?: string | undefined;
|
|
2312
|
+
}
|
|
2313
|
+
/**
|
|
2314
|
+
* <p>Input for the <code>CreateDataflowEndpointGroup</code> operation. </p>
|
|
1984
2315
|
* @public
|
|
1985
2316
|
*/
|
|
1986
2317
|
export interface CreateDataflowEndpointGroupRequest {
|
|
@@ -2006,7 +2337,7 @@ export interface CreateDataflowEndpointGroupRequest {
|
|
|
2006
2337
|
contactPostPassDurationSeconds?: number | undefined;
|
|
2007
2338
|
}
|
|
2008
2339
|
/**
|
|
2009
|
-
* <p> </p>
|
|
2340
|
+
* <p>Response containing the ID of a dataflow endpoint group. </p>
|
|
2010
2341
|
* @public
|
|
2011
2342
|
*/
|
|
2012
2343
|
export interface DataflowEndpointGroupIdResponse {
|
|
@@ -2371,7 +2702,7 @@ export declare namespace KmsKey {
|
|
|
2371
2702
|
}
|
|
2372
2703
|
}
|
|
2373
2704
|
/**
|
|
2374
|
-
* <p> </p>
|
|
2705
|
+
* <p>Input for the <code>CreateMissionProfile</code> operation. </p>
|
|
2375
2706
|
* @public
|
|
2376
2707
|
*/
|
|
2377
2708
|
export interface CreateMissionProfileRequest {
|
|
@@ -2381,17 +2712,17 @@ export interface CreateMissionProfileRequest {
|
|
|
2381
2712
|
*/
|
|
2382
2713
|
name: string | undefined;
|
|
2383
2714
|
/**
|
|
2384
|
-
* <p>Amount of time prior to contact start you
|
|
2715
|
+
* <p>Amount of time prior to contact start you'd like to receive a Ground Station Contact State Change event indicating an upcoming pass.</p>
|
|
2385
2716
|
* @public
|
|
2386
2717
|
*/
|
|
2387
2718
|
contactPrePassDurationSeconds?: number | undefined;
|
|
2388
2719
|
/**
|
|
2389
|
-
* <p>Amount of time after a contact ends that you
|
|
2720
|
+
* <p>Amount of time after a contact ends that you'd like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
2390
2721
|
* @public
|
|
2391
2722
|
*/
|
|
2392
2723
|
contactPostPassDurationSeconds?: number | undefined;
|
|
2393
2724
|
/**
|
|
2394
|
-
* <p>Smallest amount of time in seconds that you
|
|
2725
|
+
* <p>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.</p>
|
|
2395
2726
|
* @public
|
|
2396
2727
|
*/
|
|
2397
2728
|
minimumViableContactDurationSeconds: number | undefined;
|
|
@@ -2427,7 +2758,7 @@ export interface CreateMissionProfileRequest {
|
|
|
2427
2758
|
streamsKmsRole?: string | undefined;
|
|
2428
2759
|
}
|
|
2429
2760
|
/**
|
|
2430
|
-
* <p> </p>
|
|
2761
|
+
* <p>Response containing the ID of a mission profile. </p>
|
|
2431
2762
|
* @public
|
|
2432
2763
|
*/
|
|
2433
2764
|
export interface MissionProfileIdResponse {
|
|
@@ -2438,7 +2769,7 @@ export interface MissionProfileIdResponse {
|
|
|
2438
2769
|
missionProfileId?: string | undefined;
|
|
2439
2770
|
}
|
|
2440
2771
|
/**
|
|
2441
|
-
* <p> </p>
|
|
2772
|
+
* <p>Input for the <code>DeleteDataflowEndpointGroup</code> operation. </p>
|
|
2442
2773
|
* @public
|
|
2443
2774
|
*/
|
|
2444
2775
|
export interface DeleteDataflowEndpointGroupRequest {
|
|
@@ -2449,7 +2780,7 @@ export interface DeleteDataflowEndpointGroupRequest {
|
|
|
2449
2780
|
dataflowEndpointGroupId: string | undefined;
|
|
2450
2781
|
}
|
|
2451
2782
|
/**
|
|
2452
|
-
* <p> </p>
|
|
2783
|
+
* <p>Input for the <code>GetDataflowEndpointGroup</code> operation. </p>
|
|
2453
2784
|
* @public
|
|
2454
2785
|
*/
|
|
2455
2786
|
export interface GetDataflowEndpointGroupRequest {
|
|
@@ -2460,7 +2791,7 @@ export interface GetDataflowEndpointGroupRequest {
|
|
|
2460
2791
|
dataflowEndpointGroupId: string | undefined;
|
|
2461
2792
|
}
|
|
2462
2793
|
/**
|
|
2463
|
-
* <p> </p>
|
|
2794
|
+
* <p>Output for the <code>GetDataflowEndpointGroup</code> operation. </p>
|
|
2464
2795
|
* @public
|
|
2465
2796
|
*/
|
|
2466
2797
|
export interface GetDataflowEndpointGroupResponse {
|
|
@@ -2496,7 +2827,7 @@ export interface GetDataflowEndpointGroupResponse {
|
|
|
2496
2827
|
contactPostPassDurationSeconds?: number | undefined;
|
|
2497
2828
|
}
|
|
2498
2829
|
/**
|
|
2499
|
-
* <p> </p>
|
|
2830
|
+
* <p>Input for the <code>ListDataflowEndpointGroups</code> operation. </p>
|
|
2500
2831
|
* @public
|
|
2501
2832
|
*/
|
|
2502
2833
|
export interface ListDataflowEndpointGroupsRequest {
|
|
@@ -2528,7 +2859,7 @@ export interface DataflowEndpointListItem {
|
|
|
2528
2859
|
dataflowEndpointGroupArn?: string | undefined;
|
|
2529
2860
|
}
|
|
2530
2861
|
/**
|
|
2531
|
-
* <p> </p>
|
|
2862
|
+
* <p>Output for the <code>ListDataflowEndpointGroups</code> operation. </p>
|
|
2532
2863
|
* @public
|
|
2533
2864
|
*/
|
|
2534
2865
|
export interface ListDataflowEndpointGroupsResponse {
|
|
@@ -2554,7 +2885,7 @@ export interface DeleteEphemerisRequest {
|
|
|
2554
2885
|
ephemerisId: string | undefined;
|
|
2555
2886
|
}
|
|
2556
2887
|
/**
|
|
2557
|
-
* <p> </p>
|
|
2888
|
+
* <p>Input for the <code>DeleteMissionProfile</code> operation. </p>
|
|
2558
2889
|
* @public
|
|
2559
2890
|
*/
|
|
2560
2891
|
export interface DeleteMissionProfileRequest {
|
|
@@ -2913,7 +3244,7 @@ export interface GetAgentTaskResponseUrlResponse {
|
|
|
2913
3244
|
presignedLogUrl: string | undefined;
|
|
2914
3245
|
}
|
|
2915
3246
|
/**
|
|
2916
|
-
* <p
|
|
3247
|
+
* <p>Input for the <code>GetMinuteUsage</code> operation.</p>
|
|
2917
3248
|
* @public
|
|
2918
3249
|
*/
|
|
2919
3250
|
export interface GetMinuteUsageRequest {
|
|
@@ -2929,7 +3260,7 @@ export interface GetMinuteUsageRequest {
|
|
|
2929
3260
|
year: number | undefined;
|
|
2930
3261
|
}
|
|
2931
3262
|
/**
|
|
2932
|
-
* <p
|
|
3263
|
+
* <p>Output for the <code>GetMinuteUsage</code> operation.</p>
|
|
2933
3264
|
* @public
|
|
2934
3265
|
*/
|
|
2935
3266
|
export interface GetMinuteUsageResponse {
|
|
@@ -2960,7 +3291,7 @@ export interface GetMinuteUsageResponse {
|
|
|
2960
3291
|
estimatedMinutesRemaining?: number | undefined;
|
|
2961
3292
|
}
|
|
2962
3293
|
/**
|
|
2963
|
-
* <p> </p>
|
|
3294
|
+
* <p>Input for the <code>GetMissionProfile</code> operation. </p>
|
|
2964
3295
|
* @public
|
|
2965
3296
|
*/
|
|
2966
3297
|
export interface GetMissionProfileRequest {
|
|
@@ -2971,7 +3302,7 @@ export interface GetMissionProfileRequest {
|
|
|
2971
3302
|
missionProfileId: string | undefined;
|
|
2972
3303
|
}
|
|
2973
3304
|
/**
|
|
2974
|
-
* <p> </p>
|
|
3305
|
+
* <p>Output for the <code>GetMissionProfile</code> operation. </p>
|
|
2975
3306
|
* @public
|
|
2976
3307
|
*/
|
|
2977
3308
|
export interface GetMissionProfileResponse {
|
|
@@ -2996,17 +3327,17 @@ export interface GetMissionProfileResponse {
|
|
|
2996
3327
|
*/
|
|
2997
3328
|
region?: string | undefined;
|
|
2998
3329
|
/**
|
|
2999
|
-
* <p>Amount of time prior to contact start you
|
|
3330
|
+
* <p>Amount of time prior to contact start you'd like to receive a CloudWatch event indicating an upcoming pass.</p>
|
|
3000
3331
|
* @public
|
|
3001
3332
|
*/
|
|
3002
3333
|
contactPrePassDurationSeconds?: number | undefined;
|
|
3003
3334
|
/**
|
|
3004
|
-
* <p>Amount of time after a contact ends that you
|
|
3335
|
+
* <p>Amount of time after a contact ends that you'd like to receive a CloudWatch event indicating the pass has finished.</p>
|
|
3005
3336
|
* @public
|
|
3006
3337
|
*/
|
|
3007
3338
|
contactPostPassDurationSeconds?: number | undefined;
|
|
3008
3339
|
/**
|
|
3009
|
-
* <p>Smallest amount of time in seconds that you
|
|
3340
|
+
* <p>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.</p>
|
|
3010
3341
|
* @public
|
|
3011
3342
|
*/
|
|
3012
3343
|
minimumViableContactDurationSeconds?: number | undefined;
|
|
@@ -3042,7 +3373,7 @@ export interface GetMissionProfileResponse {
|
|
|
3042
3373
|
streamsKmsRole?: string | undefined;
|
|
3043
3374
|
}
|
|
3044
3375
|
/**
|
|
3045
|
-
* <p
|
|
3376
|
+
* <p>Input for the <code>GetSatellite</code> operation.</p>
|
|
3046
3377
|
* @public
|
|
3047
3378
|
*/
|
|
3048
3379
|
export interface GetSatelliteRequest {
|
|
@@ -3053,7 +3384,7 @@ export interface GetSatelliteRequest {
|
|
|
3053
3384
|
satelliteId: string | undefined;
|
|
3054
3385
|
}
|
|
3055
3386
|
/**
|
|
3056
|
-
* <p
|
|
3387
|
+
* <p>Output for the <code>GetSatellite</code> operation.</p>
|
|
3057
3388
|
* @public
|
|
3058
3389
|
*/
|
|
3059
3390
|
export interface GetSatelliteResponse {
|
|
@@ -3084,7 +3415,184 @@ export interface GetSatelliteResponse {
|
|
|
3084
3415
|
currentEphemeris?: EphemerisMetaData | undefined;
|
|
3085
3416
|
}
|
|
3086
3417
|
/**
|
|
3087
|
-
*
|
|
3418
|
+
* @public
|
|
3419
|
+
*/
|
|
3420
|
+
export interface ListAntennasRequest {
|
|
3421
|
+
/**
|
|
3422
|
+
* <p>ID of a ground station.</p>
|
|
3423
|
+
* @public
|
|
3424
|
+
*/
|
|
3425
|
+
groundStationId: string | undefined;
|
|
3426
|
+
/**
|
|
3427
|
+
* <p>Maximum number of antennas returned.</p>
|
|
3428
|
+
* @public
|
|
3429
|
+
*/
|
|
3430
|
+
maxResults?: number | undefined;
|
|
3431
|
+
/**
|
|
3432
|
+
* <p>Next token returned in the request of a previous <code>ListAntennas</code> call. Used to get the next page of results.</p>
|
|
3433
|
+
* @public
|
|
3434
|
+
*/
|
|
3435
|
+
nextToken?: string | undefined;
|
|
3436
|
+
}
|
|
3437
|
+
/**
|
|
3438
|
+
* @public
|
|
3439
|
+
*/
|
|
3440
|
+
export interface ListAntennasResponse {
|
|
3441
|
+
/**
|
|
3442
|
+
* <p>List of antennas.</p>
|
|
3443
|
+
* @public
|
|
3444
|
+
*/
|
|
3445
|
+
antennaList: AntennaListItem[] | undefined;
|
|
3446
|
+
/**
|
|
3447
|
+
* <p>Next token to be used in a subsequent <code>ListAntennas</code> call to retrieve the next page of results.</p>
|
|
3448
|
+
* @public
|
|
3449
|
+
*/
|
|
3450
|
+
nextToken?: string | undefined;
|
|
3451
|
+
}
|
|
3452
|
+
/**
|
|
3453
|
+
* @public
|
|
3454
|
+
*/
|
|
3455
|
+
export interface ListGroundStationReservationsRequest {
|
|
3456
|
+
/**
|
|
3457
|
+
* <p>ID of a ground station.</p>
|
|
3458
|
+
* @public
|
|
3459
|
+
*/
|
|
3460
|
+
groundStationId: string | undefined;
|
|
3461
|
+
/**
|
|
3462
|
+
* <p>Start time of the reservation window in UTC.</p>
|
|
3463
|
+
* @public
|
|
3464
|
+
*/
|
|
3465
|
+
startTime: Date | undefined;
|
|
3466
|
+
/**
|
|
3467
|
+
* <p>End time of the reservation window in UTC.</p>
|
|
3468
|
+
* @public
|
|
3469
|
+
*/
|
|
3470
|
+
endTime: Date | undefined;
|
|
3471
|
+
/**
|
|
3472
|
+
* <p>Types of reservations to filter by.</p>
|
|
3473
|
+
* @public
|
|
3474
|
+
*/
|
|
3475
|
+
reservationTypes?: ReservationType[] | undefined;
|
|
3476
|
+
/**
|
|
3477
|
+
* <p>Maximum number of ground station reservations returned.</p>
|
|
3478
|
+
* @public
|
|
3479
|
+
*/
|
|
3480
|
+
maxResults?: number | undefined;
|
|
3481
|
+
/**
|
|
3482
|
+
* <p>Next token returned in the request of a previous <code>ListGroundStationReservations</code> call. Used to get the next page of results.</p>
|
|
3483
|
+
* @public
|
|
3484
|
+
*/
|
|
3485
|
+
nextToken?: string | undefined;
|
|
3486
|
+
}
|
|
3487
|
+
/**
|
|
3488
|
+
* <p>Details of a maintenance reservation.</p>
|
|
3489
|
+
* @public
|
|
3490
|
+
*/
|
|
3491
|
+
export interface MaintenanceReservationDetails {
|
|
3492
|
+
/**
|
|
3493
|
+
* <p>Type of maintenance.</p>
|
|
3494
|
+
* @public
|
|
3495
|
+
*/
|
|
3496
|
+
maintenanceType: MaintenanceType | undefined;
|
|
3497
|
+
}
|
|
3498
|
+
/**
|
|
3499
|
+
* <p>Details of a ground station reservation.</p>
|
|
3500
|
+
* @public
|
|
3501
|
+
*/
|
|
3502
|
+
export type ReservationDetails = ReservationDetails.ContactMember | ReservationDetails.MaintenanceMember | ReservationDetails.$UnknownMember;
|
|
3503
|
+
/**
|
|
3504
|
+
* @public
|
|
3505
|
+
*/
|
|
3506
|
+
export declare namespace ReservationDetails {
|
|
3507
|
+
/**
|
|
3508
|
+
* <p>Details of a maintenance reservation.</p>
|
|
3509
|
+
* @public
|
|
3510
|
+
*/
|
|
3511
|
+
interface MaintenanceMember {
|
|
3512
|
+
maintenance: MaintenanceReservationDetails;
|
|
3513
|
+
contact?: never;
|
|
3514
|
+
$unknown?: never;
|
|
3515
|
+
}
|
|
3516
|
+
/**
|
|
3517
|
+
* <p>Details of a contact reservation.</p>
|
|
3518
|
+
* @public
|
|
3519
|
+
*/
|
|
3520
|
+
interface ContactMember {
|
|
3521
|
+
maintenance?: never;
|
|
3522
|
+
contact: ContactReservationDetails;
|
|
3523
|
+
$unknown?: never;
|
|
3524
|
+
}
|
|
3525
|
+
/**
|
|
3526
|
+
* @public
|
|
3527
|
+
*/
|
|
3528
|
+
interface $UnknownMember {
|
|
3529
|
+
maintenance?: never;
|
|
3530
|
+
contact?: never;
|
|
3531
|
+
$unknown: [string, any];
|
|
3532
|
+
}
|
|
3533
|
+
/**
|
|
3534
|
+
* @deprecated unused in schema-serde mode.
|
|
3535
|
+
*
|
|
3536
|
+
*/
|
|
3537
|
+
interface Visitor<T> {
|
|
3538
|
+
maintenance: (value: MaintenanceReservationDetails) => T;
|
|
3539
|
+
contact: (value: ContactReservationDetails) => T;
|
|
3540
|
+
_: (name: string, value: any) => T;
|
|
3541
|
+
}
|
|
3542
|
+
}
|
|
3543
|
+
/**
|
|
3544
|
+
* <p>Item in a list of ground station reservations.</p>
|
|
3545
|
+
* @public
|
|
3546
|
+
*/
|
|
3547
|
+
export interface GroundStationReservationListItem {
|
|
3548
|
+
/**
|
|
3549
|
+
* <p>Type of a ground station reservation.</p>
|
|
3550
|
+
* @public
|
|
3551
|
+
*/
|
|
3552
|
+
reservationType: ReservationType | undefined;
|
|
3553
|
+
/**
|
|
3554
|
+
* <p>ID of a ground station.</p>
|
|
3555
|
+
* @public
|
|
3556
|
+
*/
|
|
3557
|
+
groundStationId: string | undefined;
|
|
3558
|
+
/**
|
|
3559
|
+
* <p>Name of an antenna.</p>
|
|
3560
|
+
* @public
|
|
3561
|
+
*/
|
|
3562
|
+
antennaName: string | undefined;
|
|
3563
|
+
/**
|
|
3564
|
+
* <p>Start time of a ground station reservation in UTC.</p>
|
|
3565
|
+
* @public
|
|
3566
|
+
*/
|
|
3567
|
+
startTime: Date | undefined;
|
|
3568
|
+
/**
|
|
3569
|
+
* <p>End time of a ground station reservation in UTC.</p>
|
|
3570
|
+
* @public
|
|
3571
|
+
*/
|
|
3572
|
+
endTime: Date | undefined;
|
|
3573
|
+
/**
|
|
3574
|
+
* <p>Details of a ground station reservation.</p>
|
|
3575
|
+
* @public
|
|
3576
|
+
*/
|
|
3577
|
+
reservationDetails: ReservationDetails | undefined;
|
|
3578
|
+
}
|
|
3579
|
+
/**
|
|
3580
|
+
* @public
|
|
3581
|
+
*/
|
|
3582
|
+
export interface ListGroundStationReservationsResponse {
|
|
3583
|
+
/**
|
|
3584
|
+
* <p>List of ground station reservations.</p>
|
|
3585
|
+
* @public
|
|
3586
|
+
*/
|
|
3587
|
+
reservationList: GroundStationReservationListItem[] | undefined;
|
|
3588
|
+
/**
|
|
3589
|
+
* <p>Next token to be used in a subsequent <code>ListGroundStationReservations</code> call to retrieve the next page of results.</p>
|
|
3590
|
+
* @public
|
|
3591
|
+
*/
|
|
3592
|
+
nextToken?: string | undefined;
|
|
3593
|
+
}
|
|
3594
|
+
/**
|
|
3595
|
+
* <p>Input for the <code>ListGroundStations</code> operation.</p>
|
|
3088
3596
|
* @public
|
|
3089
3597
|
*/
|
|
3090
3598
|
export interface ListGroundStationsRequest {
|
|
@@ -3110,7 +3618,7 @@ export interface ListGroundStationsRequest {
|
|
|
3110
3618
|
*/
|
|
3111
3619
|
export interface GroundStationData {
|
|
3112
3620
|
/**
|
|
3113
|
-
* <p>
|
|
3621
|
+
* <p>ID of a ground station.</p>
|
|
3114
3622
|
* @public
|
|
3115
3623
|
*/
|
|
3116
3624
|
groundStationId?: string | undefined;
|
|
@@ -3126,7 +3634,7 @@ export interface GroundStationData {
|
|
|
3126
3634
|
region?: string | undefined;
|
|
3127
3635
|
}
|
|
3128
3636
|
/**
|
|
3129
|
-
* <p
|
|
3637
|
+
* <p>Output for the <code>ListGroundStations</code> operation.</p>
|
|
3130
3638
|
* @public
|
|
3131
3639
|
*/
|
|
3132
3640
|
export interface ListGroundStationsResponse {
|
|
@@ -3142,7 +3650,7 @@ export interface ListGroundStationsResponse {
|
|
|
3142
3650
|
groundStationList?: GroundStationData[] | undefined;
|
|
3143
3651
|
}
|
|
3144
3652
|
/**
|
|
3145
|
-
* <p
|
|
3653
|
+
* <p>Input for the <code>ListTagsForResource</code> operation.</p>
|
|
3146
3654
|
* @public
|
|
3147
3655
|
*/
|
|
3148
3656
|
export interface ListTagsForResourceRequest {
|
|
@@ -3153,7 +3661,7 @@ export interface ListTagsForResourceRequest {
|
|
|
3153
3661
|
resourceArn: string | undefined;
|
|
3154
3662
|
}
|
|
3155
3663
|
/**
|
|
3156
|
-
* <p
|
|
3664
|
+
* <p>Output for the <code>ListTagsForResource</code> operation.</p>
|
|
3157
3665
|
* @public
|
|
3158
3666
|
*/
|
|
3159
3667
|
export interface ListTagsForResourceResponse {
|
|
@@ -3164,7 +3672,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3164
3672
|
tags?: Record<string, string> | undefined;
|
|
3165
3673
|
}
|
|
3166
3674
|
/**
|
|
3167
|
-
* <p> </p>
|
|
3675
|
+
* <p>Input for the <code>ListMissionProfiles</code> operation. </p>
|
|
3168
3676
|
* @public
|
|
3169
3677
|
*/
|
|
3170
3678
|
export interface ListMissionProfilesRequest {
|
|
@@ -3206,7 +3714,7 @@ export interface MissionProfileListItem {
|
|
|
3206
3714
|
name?: string | undefined;
|
|
3207
3715
|
}
|
|
3208
3716
|
/**
|
|
3209
|
-
* <p> </p>
|
|
3717
|
+
* <p>Output for the <code>ListMissionProfiles</code> operation. </p>
|
|
3210
3718
|
* @public
|
|
3211
3719
|
*/
|
|
3212
3720
|
export interface ListMissionProfilesResponse {
|
|
@@ -3222,7 +3730,7 @@ export interface ListMissionProfilesResponse {
|
|
|
3222
3730
|
missionProfileList?: MissionProfileListItem[] | undefined;
|
|
3223
3731
|
}
|
|
3224
3732
|
/**
|
|
3225
|
-
* <p> </p>
|
|
3733
|
+
* <p>Input for the <code>UpdateMissionProfile</code> operation. </p>
|
|
3226
3734
|
* @public
|
|
3227
3735
|
*/
|
|
3228
3736
|
export interface UpdateMissionProfileRequest {
|
|
@@ -3237,17 +3745,17 @@ export interface UpdateMissionProfileRequest {
|
|
|
3237
3745
|
*/
|
|
3238
3746
|
name?: string | undefined;
|
|
3239
3747
|
/**
|
|
3240
|
-
* <p>Amount of time after a contact ends that you
|
|
3748
|
+
* <p>Amount of time after a contact ends that you'd like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
3241
3749
|
* @public
|
|
3242
3750
|
*/
|
|
3243
3751
|
contactPrePassDurationSeconds?: number | undefined;
|
|
3244
3752
|
/**
|
|
3245
|
-
* <p>Amount of time after a contact ends that you
|
|
3753
|
+
* <p>Amount of time after a contact ends that you'd like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
3246
3754
|
* @public
|
|
3247
3755
|
*/
|
|
3248
3756
|
contactPostPassDurationSeconds?: number | undefined;
|
|
3249
3757
|
/**
|
|
3250
|
-
* <p>Smallest amount of time in seconds that you
|
|
3758
|
+
* <p>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.</p>
|
|
3251
3759
|
* @public
|
|
3252
3760
|
*/
|
|
3253
3761
|
minimumViableContactDurationSeconds?: number | undefined;
|
|
@@ -3278,7 +3786,7 @@ export interface UpdateMissionProfileRequest {
|
|
|
3278
3786
|
streamsKmsRole?: string | undefined;
|
|
3279
3787
|
}
|
|
3280
3788
|
/**
|
|
3281
|
-
* <p
|
|
3789
|
+
* <p>Input for the <code>ListSatellites</code> operation.</p>
|
|
3282
3790
|
* @public
|
|
3283
3791
|
*/
|
|
3284
3792
|
export interface ListSatellitesRequest {
|
|
@@ -3325,7 +3833,7 @@ export interface SatelliteListItem {
|
|
|
3325
3833
|
currentEphemeris?: EphemerisMetaData | undefined;
|
|
3326
3834
|
}
|
|
3327
3835
|
/**
|
|
3328
|
-
* <p
|
|
3836
|
+
* <p>Output for the <code>ListSatellites</code> operation.</p>
|
|
3329
3837
|
* @public
|
|
3330
3838
|
*/
|
|
3331
3839
|
export interface ListSatellitesResponse {
|
|
@@ -3341,7 +3849,7 @@ export interface ListSatellitesResponse {
|
|
|
3341
3849
|
satellites?: SatelliteListItem[] | undefined;
|
|
3342
3850
|
}
|
|
3343
3851
|
/**
|
|
3344
|
-
* <p
|
|
3852
|
+
* <p>Input for the <code>TagResource</code> operation.</p>
|
|
3345
3853
|
* @public
|
|
3346
3854
|
*/
|
|
3347
3855
|
export interface TagResourceRequest {
|
|
@@ -3357,13 +3865,13 @@ export interface TagResourceRequest {
|
|
|
3357
3865
|
tags: Record<string, string> | undefined;
|
|
3358
3866
|
}
|
|
3359
3867
|
/**
|
|
3360
|
-
* <p
|
|
3868
|
+
* <p>Output for the <code>TagResource</code> operation.</p>
|
|
3361
3869
|
* @public
|
|
3362
3870
|
*/
|
|
3363
3871
|
export interface TagResourceResponse {
|
|
3364
3872
|
}
|
|
3365
3873
|
/**
|
|
3366
|
-
* <p
|
|
3874
|
+
* <p>Input for the <code>UntagResource</code> operation.</p>
|
|
3367
3875
|
* @public
|
|
3368
3876
|
*/
|
|
3369
3877
|
export interface UntagResourceRequest {
|
|
@@ -3379,7 +3887,7 @@ export interface UntagResourceRequest {
|
|
|
3379
3887
|
tagKeys: string[] | undefined;
|
|
3380
3888
|
}
|
|
3381
3889
|
/**
|
|
3382
|
-
* <p
|
|
3890
|
+
* <p>Output for the <code>UntagResource</code> operation.</p>
|
|
3383
3891
|
* @public
|
|
3384
3892
|
*/
|
|
3385
3893
|
export interface UntagResourceResponse {
|