@aws-sdk/client-groundstation 3.540.0 → 3.548.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/dist-cjs/index.js CHANGED
@@ -1135,7 +1135,9 @@ var de_DescribeContactCommand = /* @__PURE__ */ __name(async (output, context) =
1135
1135
  region: import_smithy_client.expectString,
1136
1136
  satelliteArn: import_smithy_client.expectString,
1137
1137
  startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1138
- tags: import_smithy_client._json
1138
+ tags: import_smithy_client._json,
1139
+ visibilityEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1140
+ visibilityStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
1139
1141
  });
1140
1142
  Object.assign(contents, doc);
1141
1143
  return contents;
@@ -1755,7 +1757,9 @@ var de_ContactData = /* @__PURE__ */ __name((output, context) => {
1755
1757
  region: import_smithy_client.expectString,
1756
1758
  satelliteArn: import_smithy_client.expectString,
1757
1759
  startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1758
- tags: import_smithy_client._json
1760
+ tags: import_smithy_client._json,
1761
+ visibilityEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
1762
+ visibilityStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
1759
1763
  });
1760
1764
  }, "de_ContactData");
1761
1765
  var de_ContactList = /* @__PURE__ */ __name((output, context) => {
@@ -592,6 +592,8 @@ export const de_DescribeContactCommand = async (output, context) => {
592
592
  satelliteArn: __expectString,
593
593
  startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
594
594
  tags: _json,
595
+ visibilityEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
596
+ visibilityStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
595
597
  });
596
598
  Object.assign(contents, doc);
597
599
  return contents;
@@ -1211,6 +1213,8 @@ const de_ContactData = (output, context) => {
1211
1213
  satelliteArn: __expectString,
1212
1214
  startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1213
1215
  tags: _json,
1216
+ visibilityEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1217
+ visibilityStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1214
1218
  });
1215
1219
  };
1216
1220
  const de_ContactList = (output, context) => {
@@ -182,6 +182,8 @@ declare const DescribeContactCommand_base: {
182
182
  * // errorMessage: "STRING_VALUE",
183
183
  * // },
184
184
  * // ],
185
+ * // visibilityStartTime: new Date("TIMESTAMP"),
186
+ * // visibilityEndTime: new Date("TIMESTAMP"),
185
187
  * // };
186
188
  *
187
189
  * ```
@@ -72,6 +72,8 @@ declare const ListContactsCommand_base: {
72
72
  * // tags: { // TagsMap
73
73
  * // "<keys>": "STRING_VALUE",
74
74
  * // },
75
+ * // visibilityStartTime: new Date("TIMESTAMP"),
76
+ * // visibilityEndTime: new Date("TIMESTAMP"),
75
77
  * // },
76
78
  * // ],
77
79
  * // };
@@ -1516,6 +1516,26 @@ export interface DescribeContactResponse {
1516
1516
  * @public
1517
1517
  */
1518
1518
  dataflowList?: DataflowDetail[];
1519
+ /**
1520
+ * <p>
1521
+ * Projected time in UTC your satellite will rise above the
1522
+ * <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
1523
+ * This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
1524
+ * active during contact execution for completed contacts.
1525
+ * </p>
1526
+ * @public
1527
+ */
1528
+ visibilityStartTime?: Date;
1529
+ /**
1530
+ * <p>
1531
+ * Projected time in UTC your satellite will set below the
1532
+ * <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
1533
+ * This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
1534
+ * active during contact execution for completed contacts.
1535
+ * </p>
1536
+ * @public
1537
+ */
1538
+ visibilityEndTime?: Date;
1519
1539
  }
1520
1540
  /**
1521
1541
  * <p/>
@@ -1633,6 +1653,28 @@ export interface ContactData {
1633
1653
  * @public
1634
1654
  */
1635
1655
  tags?: Record<string, string>;
1656
+ /**
1657
+ * <p>
1658
+ * Projected time in UTC your satellite will rise above the
1659
+ * <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
1660
+ * This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
1661
+ * active during contact execution for completed contacts.
1662
+ * <i>This field is not present for contacts with a <code>SCHEDULING</code> or <code>SCHEDULED</code> status.</i>
1663
+ * </p>
1664
+ * @public
1665
+ */
1666
+ visibilityStartTime?: Date;
1667
+ /**
1668
+ * <p>
1669
+ * Projected time in UTC your satellite will set below the
1670
+ * <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
1671
+ * This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
1672
+ * active during contact execution for completed contacts.
1673
+ * <i>This field is not present for contacts with a <code>SCHEDULING</code> or <code>SCHEDULED</code> status.</i>
1674
+ * </p>
1675
+ * @public
1676
+ */
1677
+ visibilityEndTime?: Date;
1636
1678
  }
1637
1679
  /**
1638
1680
  * <p/>
@@ -1980,12 +2022,12 @@ export interface CreateMissionProfileRequest {
1980
2022
  */
1981
2023
  name: string | undefined;
1982
2024
  /**
1983
- * <p>Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.</p>
2025
+ * <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>
1984
2026
  * @public
1985
2027
  */
1986
2028
  contactPrePassDurationSeconds?: number;
1987
2029
  /**
1988
- * <p>Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.</p>
2030
+ * <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>
1989
2031
  * @public
1990
2032
  */
1991
2033
  contactPostPassDurationSeconds?: number;
@@ -2814,12 +2856,12 @@ export interface UpdateMissionProfileRequest {
2814
2856
  */
2815
2857
  name?: string;
2816
2858
  /**
2817
- * <p>Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.</p>
2859
+ * <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>
2818
2860
  * @public
2819
2861
  */
2820
2862
  contactPrePassDurationSeconds?: number;
2821
2863
  /**
2822
- * <p>Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.</p>
2864
+ * <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>
2823
2865
  * @public
2824
2866
  */
2825
2867
  contactPostPassDurationSeconds?: number;
@@ -525,6 +525,8 @@ export interface DescribeContactResponse {
525
525
  tags?: Record<string, string>;
526
526
  region?: string;
527
527
  dataflowList?: DataflowDetail[];
528
+ visibilityStartTime?: Date;
529
+ visibilityEndTime?: Date;
528
530
  }
529
531
  export interface ListContactsRequest {
530
532
  maxResults?: number;
@@ -550,6 +552,8 @@ export interface ContactData {
550
552
  maximumElevation?: Elevation;
551
553
  region?: string;
552
554
  tags?: Record<string, string>;
555
+ visibilityStartTime?: Date;
556
+ visibilityEndTime?: Date;
553
557
  }
554
558
  export interface ListContactsResponse {
555
559
  nextToken?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-groundstation",
3
3
  "description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
4
- "version": "3.540.0",
4
+ "version": "3.548.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-groundstation",