@aws-sdk/client-groundstation 3.974.0 → 3.976.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.
@@ -1,4 +1,4 @@
1
- import { AgentStatus, AngleUnits, AuditResults, BandwidthUnits, CapabilityHealth, CapabilityHealthReason, ConfigCapabilityType, ContactStatus, Criticality, EirpUnits, EndpointStatus, EphemerisErrorCode, EphemerisInvalidReason, EphemerisSource, EphemerisStatus, EphemerisType, FrequencyUnits, Polarization } from "./enums";
1
+ import { AgentStatus, AngleUnits, AuditResults, BandwidthUnits, CapabilityHealth, CapabilityHealthReason, ConfigCapabilityType, ContactStatus, Criticality, EirpUnits, EndpointStatus, EphemerisErrorCode, EphemerisInvalidReason, EphemerisSource, EphemerisStatus, EphemerisType, FrequencyUnits, Polarization, TelemetrySinkType } from "./enums";
2
2
  /**
3
3
  * @public
4
4
  */
@@ -680,7 +680,7 @@ export interface AzElProgramTrackSettings {
680
680
  ephemerisId: string | undefined;
681
681
  }
682
682
  /**
683
- * <p/>
683
+ * <p> </p>
684
684
  * @public
685
685
  */
686
686
  export interface CancelContactRequest {
@@ -691,7 +691,7 @@ export interface CancelContactRequest {
691
691
  contactId: string | undefined;
692
692
  }
693
693
  /**
694
- * <p/>
694
+ * <p> </p>
695
695
  * @public
696
696
  */
697
697
  export interface ContactIdResponse {
@@ -702,7 +702,7 @@ export interface ContactIdResponse {
702
702
  contactId?: string | undefined;
703
703
  }
704
704
  /**
705
- * <p/>
705
+ * <p> </p>
706
706
  * @public
707
707
  */
708
708
  export interface ConfigIdResponse {
@@ -759,6 +759,71 @@ export interface S3RecordingConfig {
759
759
  */
760
760
  prefix?: string | undefined;
761
761
  }
762
+ /**
763
+ * <p>Information for telemetry delivery to Kinesis Data Streams.</p>
764
+ * @public
765
+ */
766
+ export interface KinesisDataStreamData {
767
+ /**
768
+ * <p>ARN of the IAM Role used by AWS Ground Station to deliver telemetry.</p>
769
+ * @public
770
+ */
771
+ kinesisRoleArn: string | undefined;
772
+ /**
773
+ * <p>ARN of the Kinesis Data Stream to deliver telemetry to.</p>
774
+ * @public
775
+ */
776
+ kinesisDataStreamArn: string | undefined;
777
+ }
778
+ /**
779
+ * <p>Information about a telemetry sink.</p>
780
+ * @public
781
+ */
782
+ export type TelemetrySinkData = TelemetrySinkData.KinesisDataStreamDataMember | TelemetrySinkData.$UnknownMember;
783
+ /**
784
+ * @public
785
+ */
786
+ export declare namespace TelemetrySinkData {
787
+ /**
788
+ * <p>Information about a telemetry sink of type <code>KINESIS_DATA_STREAM</code>.</p>
789
+ * @public
790
+ */
791
+ interface KinesisDataStreamDataMember {
792
+ kinesisDataStreamData: KinesisDataStreamData;
793
+ $unknown?: never;
794
+ }
795
+ /**
796
+ * @public
797
+ */
798
+ interface $UnknownMember {
799
+ kinesisDataStreamData?: never;
800
+ $unknown: [string, any];
801
+ }
802
+ /**
803
+ * @deprecated unused in schema-serde mode.
804
+ *
805
+ */
806
+ interface Visitor<T> {
807
+ kinesisDataStreamData: (value: KinesisDataStreamData) => T;
808
+ _: (name: string, value: any) => T;
809
+ }
810
+ }
811
+ /**
812
+ * <p>Information about a telemetry sink <code>Config</code>.</p>
813
+ * @public
814
+ */
815
+ export interface TelemetrySinkConfig {
816
+ /**
817
+ * <p>The type of telemetry sink.</p>
818
+ * @public
819
+ */
820
+ telemetrySinkType: TelemetrySinkType | undefined;
821
+ /**
822
+ * <p>Information about the telemetry sink specified by the <code>telemetrySinkType</code>.</p>
823
+ * @public
824
+ */
825
+ telemetrySinkData: TelemetrySinkData | undefined;
826
+ }
762
827
  /**
763
828
  * <p>Object that determines whether tracking should be used during a contact executed with this <code>Config</code> in the mission profile.</p>
764
829
  * @public
@@ -771,7 +836,7 @@ export interface TrackingConfig {
771
836
  autotrack: Criticality | undefined;
772
837
  }
773
838
  /**
774
- * <p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the specified <code>AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code> is used in a contact.</p>
839
+ * <p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the specified <code> AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code> is used in a contact.</p>
775
840
  * @public
776
841
  */
777
842
  export interface UplinkEchoConfig {
@@ -790,7 +855,7 @@ export interface UplinkEchoConfig {
790
855
  * <p>Object containing the parameters of a <code>Config</code>.</p> <p>See the subtype definitions for what each type of <code>Config</code> contains.</p>
791
856
  * @public
792
857
  */
793
- export type ConfigTypeData = ConfigTypeData.AntennaDownlinkConfigMember | ConfigTypeData.AntennaDownlinkDemodDecodeConfigMember | ConfigTypeData.AntennaUplinkConfigMember | ConfigTypeData.DataflowEndpointConfigMember | ConfigTypeData.S3RecordingConfigMember | ConfigTypeData.TrackingConfigMember | ConfigTypeData.UplinkEchoConfigMember | ConfigTypeData.$UnknownMember;
858
+ export type ConfigTypeData = ConfigTypeData.AntennaDownlinkConfigMember | ConfigTypeData.AntennaDownlinkDemodDecodeConfigMember | ConfigTypeData.AntennaUplinkConfigMember | ConfigTypeData.DataflowEndpointConfigMember | ConfigTypeData.S3RecordingConfigMember | ConfigTypeData.TelemetrySinkConfigMember | ConfigTypeData.TrackingConfigMember | ConfigTypeData.UplinkEchoConfigMember | ConfigTypeData.$UnknownMember;
794
859
  /**
795
860
  * @public
796
861
  */
@@ -807,6 +872,7 @@ export declare namespace ConfigTypeData {
807
872
  antennaUplinkConfig?: never;
808
873
  uplinkEchoConfig?: never;
809
874
  s3RecordingConfig?: never;
875
+ telemetrySinkConfig?: never;
810
876
  $unknown?: never;
811
877
  }
812
878
  /**
@@ -821,6 +887,7 @@ export declare namespace ConfigTypeData {
821
887
  antennaUplinkConfig?: never;
822
888
  uplinkEchoConfig?: never;
823
889
  s3RecordingConfig?: never;
890
+ telemetrySinkConfig?: never;
824
891
  $unknown?: never;
825
892
  }
826
893
  /**
@@ -835,6 +902,7 @@ export declare namespace ConfigTypeData {
835
902
  antennaUplinkConfig?: never;
836
903
  uplinkEchoConfig?: never;
837
904
  s3RecordingConfig?: never;
905
+ telemetrySinkConfig?: never;
838
906
  $unknown?: never;
839
907
  }
840
908
  /**
@@ -849,6 +917,7 @@ export declare namespace ConfigTypeData {
849
917
  antennaUplinkConfig?: never;
850
918
  uplinkEchoConfig?: never;
851
919
  s3RecordingConfig?: never;
920
+ telemetrySinkConfig?: never;
852
921
  $unknown?: never;
853
922
  }
854
923
  /**
@@ -863,10 +932,11 @@ export declare namespace ConfigTypeData {
863
932
  antennaUplinkConfig: AntennaUplinkConfig;
864
933
  uplinkEchoConfig?: never;
865
934
  s3RecordingConfig?: never;
935
+ telemetrySinkConfig?: never;
866
936
  $unknown?: never;
867
937
  }
868
938
  /**
869
- * <p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the specified <code>AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code> is used in a contact.</p>
939
+ * <p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the specified <code> AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code> is used in a contact.</p>
870
940
  * @public
871
941
  */
872
942
  interface UplinkEchoConfigMember {
@@ -877,6 +947,7 @@ export declare namespace ConfigTypeData {
877
947
  antennaUplinkConfig?: never;
878
948
  uplinkEchoConfig: UplinkEchoConfig;
879
949
  s3RecordingConfig?: never;
950
+ telemetrySinkConfig?: never;
880
951
  $unknown?: never;
881
952
  }
882
953
  /**
@@ -891,6 +962,22 @@ export declare namespace ConfigTypeData {
891
962
  antennaUplinkConfig?: never;
892
963
  uplinkEchoConfig?: never;
893
964
  s3RecordingConfig: S3RecordingConfig;
965
+ telemetrySinkConfig?: never;
966
+ $unknown?: never;
967
+ }
968
+ /**
969
+ * <p>Information about a telemetry sink <code>Config</code>.</p>
970
+ * @public
971
+ */
972
+ interface TelemetrySinkConfigMember {
973
+ antennaDownlinkConfig?: never;
974
+ trackingConfig?: never;
975
+ dataflowEndpointConfig?: never;
976
+ antennaDownlinkDemodDecodeConfig?: never;
977
+ antennaUplinkConfig?: never;
978
+ uplinkEchoConfig?: never;
979
+ s3RecordingConfig?: never;
980
+ telemetrySinkConfig: TelemetrySinkConfig;
894
981
  $unknown?: never;
895
982
  }
896
983
  /**
@@ -904,6 +991,7 @@ export declare namespace ConfigTypeData {
904
991
  antennaUplinkConfig?: never;
905
992
  uplinkEchoConfig?: never;
906
993
  s3RecordingConfig?: never;
994
+ telemetrySinkConfig?: never;
907
995
  $unknown: [string, any];
908
996
  }
909
997
  /**
@@ -918,11 +1006,12 @@ export declare namespace ConfigTypeData {
918
1006
  antennaUplinkConfig: (value: AntennaUplinkConfig) => T;
919
1007
  uplinkEchoConfig: (value: UplinkEchoConfig) => T;
920
1008
  s3RecordingConfig: (value: S3RecordingConfig) => T;
1009
+ telemetrySinkConfig: (value: TelemetrySinkConfig) => T;
921
1010
  _: (name: string, value: any) => T;
922
1011
  }
923
1012
  }
924
1013
  /**
925
- * <p/>
1014
+ * <p> </p>
926
1015
  * @public
927
1016
  */
928
1017
  export interface CreateConfigRequest {
@@ -943,7 +1032,7 @@ export interface CreateConfigRequest {
943
1032
  tags?: Record<string, string> | undefined;
944
1033
  }
945
1034
  /**
946
- * <p/>
1035
+ * <p> </p>
947
1036
  * @public
948
1037
  */
949
1038
  export interface DeleteConfigRequest {
@@ -959,7 +1048,7 @@ export interface DeleteConfigRequest {
959
1048
  configType: ConfigCapabilityType | undefined;
960
1049
  }
961
1050
  /**
962
- * <p/>
1051
+ * <p> </p>
963
1052
  * @public
964
1053
  */
965
1054
  export interface GetConfigRequest {
@@ -975,7 +1064,7 @@ export interface GetConfigRequest {
975
1064
  configType: ConfigCapabilityType | undefined;
976
1065
  }
977
1066
  /**
978
- * <p/>
1067
+ * <p> </p>
979
1068
  * @public
980
1069
  */
981
1070
  export interface GetConfigResponse {
@@ -1011,7 +1100,7 @@ export interface GetConfigResponse {
1011
1100
  tags?: Record<string, string> | undefined;
1012
1101
  }
1013
1102
  /**
1014
- * <p/>
1103
+ * <p> </p>
1015
1104
  * @public
1016
1105
  */
1017
1106
  export interface ListConfigsRequest {
@@ -1053,7 +1142,7 @@ export interface ConfigListItem {
1053
1142
  name?: string | undefined;
1054
1143
  }
1055
1144
  /**
1056
- * <p/>
1145
+ * <p> </p>
1057
1146
  * @public
1058
1147
  */
1059
1148
  export interface ListConfigsResponse {
@@ -1069,7 +1158,7 @@ export interface ListConfigsResponse {
1069
1158
  configList?: ConfigListItem[] | undefined;
1070
1159
  }
1071
1160
  /**
1072
- * <p/>
1161
+ * <p> </p>
1073
1162
  * @public
1074
1163
  */
1075
1164
  export interface UpdateConfigRequest {
@@ -1408,7 +1497,7 @@ export declare namespace ConfigDetails {
1408
1497
  }
1409
1498
  }
1410
1499
  /**
1411
- * <p/>
1500
+ * <p> </p>
1412
1501
  * @public
1413
1502
  */
1414
1503
  export interface DescribeContactRequest {
@@ -1568,7 +1657,7 @@ export interface TrackingOverrides {
1568
1657
  programTrackSettings: ProgramTrackSettings | undefined;
1569
1658
  }
1570
1659
  /**
1571
- * <p/>
1660
+ * <p> </p>
1572
1661
  * @public
1573
1662
  */
1574
1663
  export interface DescribeContactResponse {
@@ -1697,7 +1786,7 @@ export declare namespace EphemerisFilter {
1697
1786
  }
1698
1787
  }
1699
1788
  /**
1700
- * <p/>
1789
+ * <p> </p>
1701
1790
  * @public
1702
1791
  */
1703
1792
  export interface ListContactsRequest {
@@ -1834,7 +1923,7 @@ export interface ContactData {
1834
1923
  ephemeris?: EphemerisResponseData | undefined;
1835
1924
  }
1836
1925
  /**
1837
- * <p/>
1926
+ * <p> </p>
1838
1927
  * @public
1839
1928
  */
1840
1929
  export interface ListContactsResponse {
@@ -1850,7 +1939,7 @@ export interface ListContactsResponse {
1850
1939
  contactList?: ContactData[] | undefined;
1851
1940
  }
1852
1941
  /**
1853
- * <p/>
1942
+ * <p> </p>
1854
1943
  * @public
1855
1944
  */
1856
1945
  export interface ReserveContactRequest {
@@ -1891,7 +1980,7 @@ export interface ReserveContactRequest {
1891
1980
  trackingOverrides?: TrackingOverrides | undefined;
1892
1981
  }
1893
1982
  /**
1894
- * <p/>
1983
+ * <p> </p>
1895
1984
  * @public
1896
1985
  */
1897
1986
  export interface CreateDataflowEndpointGroupRequest {
@@ -1906,18 +1995,18 @@ export interface CreateDataflowEndpointGroupRequest {
1906
1995
  */
1907
1996
  tags?: Record<string, string> | undefined;
1908
1997
  /**
1909
- * <p>Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state.</p>
1998
+ * <p> Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state. </p>
1910
1999
  * @public
1911
2000
  */
1912
2001
  contactPrePassDurationSeconds?: number | undefined;
1913
2002
  /**
1914
- * <p>Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state.</p>
2003
+ * <p> Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state. </p>
1915
2004
  * @public
1916
2005
  */
1917
2006
  contactPostPassDurationSeconds?: number | undefined;
1918
2007
  }
1919
2008
  /**
1920
- * <p/>
2009
+ * <p> </p>
1921
2010
  * @public
1922
2011
  */
1923
2012
  export interface DataflowEndpointGroupIdResponse {
@@ -2014,12 +2103,12 @@ export interface CreateDataflowEndpointGroupV2Request {
2014
2103
  */
2015
2104
  endpoints: CreateEndpointDetails[] | undefined;
2016
2105
  /**
2017
- * <p>Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state.</p>
2106
+ * <p> Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state. </p>
2018
2107
  * @public
2019
2108
  */
2020
2109
  contactPrePassDurationSeconds?: number | undefined;
2021
2110
  /**
2022
- * <p>Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state.</p>
2111
+ * <p> Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state. </p>
2023
2112
  * @public
2024
2113
  */
2025
2114
  contactPostPassDurationSeconds?: number | undefined;
@@ -2040,7 +2129,7 @@ export interface CreateDataflowEndpointGroupV2Response {
2040
2129
  dataflowEndpointGroupId?: string | undefined;
2041
2130
  }
2042
2131
  /**
2043
- * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
2132
+ * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/Pubs/502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
2044
2133
  * @public
2045
2134
  */
2046
2135
  export interface OEMEphemeris {
@@ -2128,7 +2217,7 @@ export declare namespace EphemerisData {
2128
2217
  $unknown?: never;
2129
2218
  }
2130
2219
  /**
2131
- * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
2220
+ * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/Pubs/502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
2132
2221
  * @public
2133
2222
  */
2134
2223
  interface OemMember {
@@ -2282,7 +2371,7 @@ export declare namespace KmsKey {
2282
2371
  }
2283
2372
  }
2284
2373
  /**
2285
- * <p/>
2374
+ * <p> </p>
2286
2375
  * @public
2287
2376
  */
2288
2377
  export interface CreateMissionProfileRequest {
@@ -2307,7 +2396,7 @@ export interface CreateMissionProfileRequest {
2307
2396
  */
2308
2397
  minimumViableContactDurationSeconds: number | undefined;
2309
2398
  /**
2310
- * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code>Config</code> and a <i>to</i> <code>Config</code>.</p>
2399
+ * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code> Config</code> and a <i>to</i> <code>Config</code>.</p>
2311
2400
  * @public
2312
2401
  */
2313
2402
  dataflowEdges: string[][] | undefined;
@@ -2316,6 +2405,11 @@ export interface CreateMissionProfileRequest {
2316
2405
  * @public
2317
2406
  */
2318
2407
  trackingConfigArn: string | undefined;
2408
+ /**
2409
+ * <p>ARN of a telemetry sink <code>Config</code>.</p>
2410
+ * @public
2411
+ */
2412
+ telemetrySinkConfigArn?: string | undefined;
2319
2413
  /**
2320
2414
  * <p>Tags assigned to a mission profile.</p>
2321
2415
  * @public
@@ -2333,7 +2427,7 @@ export interface CreateMissionProfileRequest {
2333
2427
  streamsKmsRole?: string | undefined;
2334
2428
  }
2335
2429
  /**
2336
- * <p/>
2430
+ * <p> </p>
2337
2431
  * @public
2338
2432
  */
2339
2433
  export interface MissionProfileIdResponse {
@@ -2344,7 +2438,7 @@ export interface MissionProfileIdResponse {
2344
2438
  missionProfileId?: string | undefined;
2345
2439
  }
2346
2440
  /**
2347
- * <p/>
2441
+ * <p> </p>
2348
2442
  * @public
2349
2443
  */
2350
2444
  export interface DeleteDataflowEndpointGroupRequest {
@@ -2355,7 +2449,7 @@ export interface DeleteDataflowEndpointGroupRequest {
2355
2449
  dataflowEndpointGroupId: string | undefined;
2356
2450
  }
2357
2451
  /**
2358
- * <p/>
2452
+ * <p> </p>
2359
2453
  * @public
2360
2454
  */
2361
2455
  export interface GetDataflowEndpointGroupRequest {
@@ -2366,7 +2460,7 @@ export interface GetDataflowEndpointGroupRequest {
2366
2460
  dataflowEndpointGroupId: string | undefined;
2367
2461
  }
2368
2462
  /**
2369
- * <p/>
2463
+ * <p> </p>
2370
2464
  * @public
2371
2465
  */
2372
2466
  export interface GetDataflowEndpointGroupResponse {
@@ -2402,7 +2496,7 @@ export interface GetDataflowEndpointGroupResponse {
2402
2496
  contactPostPassDurationSeconds?: number | undefined;
2403
2497
  }
2404
2498
  /**
2405
- * <p/>
2499
+ * <p> </p>
2406
2500
  * @public
2407
2501
  */
2408
2502
  export interface ListDataflowEndpointGroupsRequest {
@@ -2434,7 +2528,7 @@ export interface DataflowEndpointListItem {
2434
2528
  dataflowEndpointGroupArn?: string | undefined;
2435
2529
  }
2436
2530
  /**
2437
- * <p/>
2531
+ * <p> </p>
2438
2532
  * @public
2439
2533
  */
2440
2534
  export interface ListDataflowEndpointGroupsResponse {
@@ -2460,7 +2554,7 @@ export interface DeleteEphemerisRequest {
2460
2554
  ephemerisId: string | undefined;
2461
2555
  }
2462
2556
  /**
2463
- * <p/>
2557
+ * <p> </p>
2464
2558
  * @public
2465
2559
  */
2466
2560
  export interface DeleteMissionProfileRequest {
@@ -2866,7 +2960,7 @@ export interface GetMinuteUsageResponse {
2866
2960
  estimatedMinutesRemaining?: number | undefined;
2867
2961
  }
2868
2962
  /**
2869
- * <p/>
2963
+ * <p> </p>
2870
2964
  * @public
2871
2965
  */
2872
2966
  export interface GetMissionProfileRequest {
@@ -2877,7 +2971,7 @@ export interface GetMissionProfileRequest {
2877
2971
  missionProfileId: string | undefined;
2878
2972
  }
2879
2973
  /**
2880
- * <p/>
2974
+ * <p> </p>
2881
2975
  * @public
2882
2976
  */
2883
2977
  export interface GetMissionProfileResponse {
@@ -2917,7 +3011,7 @@ export interface GetMissionProfileResponse {
2917
3011
  */
2918
3012
  minimumViableContactDurationSeconds?: number | undefined;
2919
3013
  /**
2920
- * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code>Config</code> and a <i>to</i> <code>Config</code>.</p>
3014
+ * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code> Config</code> and a <i>to</i> <code>Config</code>.</p>
2921
3015
  * @public
2922
3016
  */
2923
3017
  dataflowEdges?: string[][] | undefined;
@@ -2926,6 +3020,11 @@ export interface GetMissionProfileResponse {
2926
3020
  * @public
2927
3021
  */
2928
3022
  trackingConfigArn?: string | undefined;
3023
+ /**
3024
+ * <p>ARN of a telemetry sink <code>Config</code>.</p>
3025
+ * @public
3026
+ */
3027
+ telemetrySinkConfigArn?: string | undefined;
2929
3028
  /**
2930
3029
  * <p>Tags assigned to a mission profile.</p>
2931
3030
  * @public
@@ -3065,7 +3164,7 @@ export interface ListTagsForResourceResponse {
3065
3164
  tags?: Record<string, string> | undefined;
3066
3165
  }
3067
3166
  /**
3068
- * <p/>
3167
+ * <p> </p>
3069
3168
  * @public
3070
3169
  */
3071
3170
  export interface ListMissionProfilesRequest {
@@ -3107,7 +3206,7 @@ export interface MissionProfileListItem {
3107
3206
  name?: string | undefined;
3108
3207
  }
3109
3208
  /**
3110
- * <p/>
3209
+ * <p> </p>
3111
3210
  * @public
3112
3211
  */
3113
3212
  export interface ListMissionProfilesResponse {
@@ -3123,7 +3222,7 @@ export interface ListMissionProfilesResponse {
3123
3222
  missionProfileList?: MissionProfileListItem[] | undefined;
3124
3223
  }
3125
3224
  /**
3126
- * <p/>
3225
+ * <p> </p>
3127
3226
  * @public
3128
3227
  */
3129
3228
  export interface UpdateMissionProfileRequest {
@@ -3153,7 +3252,7 @@ export interface UpdateMissionProfileRequest {
3153
3252
  */
3154
3253
  minimumViableContactDurationSeconds?: number | undefined;
3155
3254
  /**
3156
- * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code>Config</code> and a <i>to</i> <code>Config</code>.</p>
3255
+ * <p>A list of lists of ARNs. Each list of ARNs is an edge, with a <i>from</i> <code> Config</code> and a <i>to</i> <code>Config</code>.</p>
3157
3256
  * @public
3158
3257
  */
3159
3258
  dataflowEdges?: string[][] | undefined;
@@ -3162,6 +3261,11 @@ export interface UpdateMissionProfileRequest {
3162
3261
  * @public
3163
3262
  */
3164
3263
  trackingConfigArn?: string | undefined;
3264
+ /**
3265
+ * <p>ARN of a telemetry sink <code>Config</code>.</p>
3266
+ * @public
3267
+ */
3268
+ telemetrySinkConfigArn?: string | undefined;
3165
3269
  /**
3166
3270
  * <p>KMS key to use for encrypting streams.</p>
3167
3271
  * @public
@@ -75,6 +75,7 @@ export declare var GroundStationData$: StaticStructureSchema;
75
75
  export declare var IntegerRange$: StaticStructureSchema;
76
76
  export declare var InvalidParameterException$: StaticErrorSchema;
77
77
  export declare var ISO8601TimeRange$: StaticStructureSchema;
78
+ export declare var KinesisDataStreamData$: StaticStructureSchema;
78
79
  export declare var ListConfigsRequest$: StaticStructureSchema;
79
80
  export declare var ListConfigsResponse$: StaticStructureSchema;
80
81
  export declare var ListContactsRequest$: StaticStructureSchema;
@@ -113,6 +114,7 @@ export declare var Source$: StaticStructureSchema;
113
114
  export declare var SpectrumConfig$: StaticStructureSchema;
114
115
  export declare var TagResourceRequest$: StaticStructureSchema;
115
116
  export declare var TagResourceResponse$: StaticStructureSchema;
117
+ export declare var TelemetrySinkConfig$: StaticStructureSchema;
116
118
  export declare var TimeAzEl$: StaticStructureSchema;
117
119
  export declare var TimeRange$: StaticStructureSchema;
118
120
  export declare var TLEData$: StaticStructureSchema;
@@ -142,6 +144,7 @@ export declare var EphemerisFilter$: StaticUnionSchema;
142
144
  export declare var EphemerisTypeDescription$: StaticUnionSchema;
143
145
  export declare var KmsKey$: StaticUnionSchema;
144
146
  export declare var ProgramTrackSettings$: StaticUnionSchema;
147
+ export declare var TelemetrySinkData$: StaticUnionSchema;
145
148
  export declare var UplinkDataflowDetails$: StaticUnionSchema;
146
149
  export declare var CancelContact$: StaticOperationSchema;
147
150
  export declare var CreateConfig$: StaticOperationSchema;
@@ -62,11 +62,17 @@ export declare const ConfigCapabilityType: {
62
62
  readonly ANTENNA_UPLINK: "antenna-uplink";
63
63
  readonly DATAFLOW_ENDPOINT: "dataflow-endpoint";
64
64
  readonly S3_RECORDING: "s3-recording";
65
+ readonly TELEMETRY_SINK: "telemetry-sink";
65
66
  readonly TRACKING: "tracking";
66
67
  readonly UPLINK_ECHO: "uplink-echo";
67
68
  };
68
69
  export type ConfigCapabilityType =
69
70
  (typeof ConfigCapabilityType)[keyof typeof ConfigCapabilityType];
71
+ export declare const TelemetrySinkType: {
72
+ readonly KINESIS_DATA_STREAM: "KINESIS_DATA_STREAM";
73
+ };
74
+ export type TelemetrySinkType =
75
+ (typeof TelemetrySinkType)[keyof typeof TelemetrySinkType];
70
76
  export declare const Criticality: {
71
77
  readonly PREFERRED: "PREFERRED";
72
78
  readonly REMOVED: "REMOVED";