@aws-sdk/client-groundstation 3.687.0 → 3.691.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.
@@ -3,7 +3,7 @@ import { GroundStationServiceException as __BaseException } from "./GroundStatio
3
3
  export declare class DependencyException extends __BaseException {
4
4
  readonly name: "DependencyException";
5
5
  readonly $fault: "server";
6
- parameterName?: string;
6
+ parameterName?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<DependencyException, __BaseException>
9
9
  );
@@ -12,13 +12,13 @@ export interface GetAgentConfigurationRequest {
12
12
  agentId: string | undefined;
13
13
  }
14
14
  export interface GetAgentConfigurationResponse {
15
- agentId?: string;
16
- taskingDocument?: string;
15
+ agentId?: string | undefined;
16
+ taskingDocument?: string | undefined;
17
17
  }
18
18
  export declare class InvalidParameterException extends __BaseException {
19
19
  readonly name: "InvalidParameterException";
20
20
  readonly $fault: "client";
21
- parameterName?: string;
21
+ parameterName?: string | undefined;
22
22
  constructor(
23
23
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
24
24
  );
@@ -38,8 +38,8 @@ export interface AgentDetails {
38
38
  agentVersion: string | undefined;
39
39
  instanceId: string | undefined;
40
40
  instanceType: string | undefined;
41
- reservedCpuCores?: number[];
42
- agentCpuCores?: number[];
41
+ reservedCpuCores?: number[] | undefined;
42
+ agentCpuCores?: number[] | undefined;
43
43
  componentVersions: ComponentVersion[] | undefined;
44
44
  }
45
45
  export interface DiscoveryData {
@@ -52,7 +52,7 @@ export interface RegisterAgentRequest {
52
52
  agentDetails: AgentDetails | undefined;
53
53
  }
54
54
  export interface RegisterAgentResponse {
55
- agentId?: string;
55
+ agentId?: string | undefined;
56
56
  }
57
57
  export declare const AgentStatus: {
58
58
  readonly ACTIVE: "ACTIVE";
@@ -63,15 +63,15 @@ export declare const AgentStatus: {
63
63
  export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
64
64
  export interface AggregateStatus {
65
65
  status: AgentStatus | undefined;
66
- signatureMap?: Record<string, boolean>;
66
+ signatureMap?: Record<string, boolean> | undefined;
67
67
  }
68
68
  export interface ComponentStatusData {
69
69
  componentType: string | undefined;
70
70
  capabilityArn: string | undefined;
71
71
  status: AgentStatus | undefined;
72
- bytesSent?: number;
73
- bytesReceived?: number;
74
- packetsDropped?: number;
72
+ bytesSent?: number | undefined;
73
+ bytesReceived?: number | undefined;
74
+ packetsDropped?: number | undefined;
75
75
  dataflowId: string | undefined;
76
76
  }
77
77
  export interface UpdateAgentStatusRequest {
@@ -89,7 +89,7 @@ export declare const AngleUnits: {
89
89
  };
90
90
  export type AngleUnits = (typeof AngleUnits)[keyof typeof AngleUnits];
91
91
  export interface AntennaDemodDecodeDetails {
92
- outputNode?: string;
92
+ outputNode?: string | undefined;
93
93
  }
94
94
  export declare const BandwidthUnits: {
95
95
  readonly GHZ: "GHz";
@@ -122,7 +122,7 @@ export type Polarization = (typeof Polarization)[keyof typeof Polarization];
122
122
  export interface SpectrumConfig {
123
123
  centerFrequency: Frequency | undefined;
124
124
  bandwidth: FrequencyBandwidth | undefined;
125
- polarization?: Polarization;
125
+ polarization?: Polarization | undefined;
126
126
  }
127
127
  export interface AntennaDownlinkConfig {
128
128
  spectrumConfig: SpectrumConfig | undefined;
@@ -140,7 +140,7 @@ export interface AntennaDownlinkDemodDecodeConfig {
140
140
  }
141
141
  export interface UplinkSpectrumConfig {
142
142
  centerFrequency: Frequency | undefined;
143
- polarization?: Polarization;
143
+ polarization?: Polarization | undefined;
144
144
  }
145
145
  export declare const EirpUnits: {
146
146
  readonly DBW: "dBW";
@@ -151,7 +151,7 @@ export interface Eirp {
151
151
  units: EirpUnits | undefined;
152
152
  }
153
153
  export interface AntennaUplinkConfig {
154
- transmitDisabled?: boolean;
154
+ transmitDisabled?: boolean | undefined;
155
155
  spectrumConfig: UplinkSpectrumConfig | undefined;
156
156
  targetEirp: Eirp | undefined;
157
157
  }
@@ -166,7 +166,7 @@ export interface SocketAddress {
166
166
  }
167
167
  export interface ConnectionDetails {
168
168
  socketAddress: SocketAddress | undefined;
169
- mtu?: number;
169
+ mtu?: number | undefined;
170
170
  }
171
171
  export interface IntegerRange {
172
172
  minimum: number | undefined;
@@ -178,20 +178,20 @@ export interface RangedSocketAddress {
178
178
  }
179
179
  export interface RangedConnectionDetails {
180
180
  socketAddress: RangedSocketAddress | undefined;
181
- mtu?: number;
181
+ mtu?: number | undefined;
182
182
  }
183
183
  export interface AwsGroundStationAgentEndpoint {
184
184
  name: string | undefined;
185
185
  egressAddress: ConnectionDetails | undefined;
186
186
  ingressAddress: RangedConnectionDetails | undefined;
187
- agentStatus?: AgentStatus;
188
- auditResults?: AuditResults;
187
+ agentStatus?: AgentStatus | undefined;
188
+ auditResults?: AuditResults | undefined;
189
189
  }
190
190
  export interface CancelContactRequest {
191
191
  contactId: string | undefined;
192
192
  }
193
193
  export interface ContactIdResponse {
194
- contactId?: string;
194
+ contactId?: string | undefined;
195
195
  }
196
196
  export declare const CapabilityHealth: {
197
197
  readonly HEALTHY: "HEALTHY";
@@ -222,18 +222,18 @@ export declare const ConfigCapabilityType: {
222
222
  export type ConfigCapabilityType =
223
223
  (typeof ConfigCapabilityType)[keyof typeof ConfigCapabilityType];
224
224
  export interface ConfigIdResponse {
225
- configId?: string;
226
- configType?: ConfigCapabilityType;
227
- configArn?: string;
225
+ configId?: string | undefined;
226
+ configType?: ConfigCapabilityType | undefined;
227
+ configArn?: string | undefined;
228
228
  }
229
229
  export interface DataflowEndpointConfig {
230
230
  dataflowEndpointName: string | undefined;
231
- dataflowEndpointRegion?: string;
231
+ dataflowEndpointRegion?: string | undefined;
232
232
  }
233
233
  export interface S3RecordingConfig {
234
234
  bucketArn: string | undefined;
235
235
  roleArn: string | undefined;
236
- prefix?: string;
236
+ prefix?: string | undefined;
237
237
  }
238
238
  export declare const Criticality: {
239
239
  readonly PREFERRED: "PREFERRED";
@@ -355,12 +355,12 @@ export declare namespace ConfigTypeData {
355
355
  export interface CreateConfigRequest {
356
356
  name: string | undefined;
357
357
  configData: ConfigTypeData | undefined;
358
- tags?: Record<string, string>;
358
+ tags?: Record<string, string> | undefined;
359
359
  }
360
360
  export declare class ResourceLimitExceededException extends __BaseException {
361
361
  readonly name: "ResourceLimitExceededException";
362
362
  readonly $fault: "client";
363
- parameterName?: string;
363
+ parameterName?: string | undefined;
364
364
  constructor(
365
365
  opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
366
366
  );
@@ -377,23 +377,23 @@ export interface GetConfigResponse {
377
377
  configId: string | undefined;
378
378
  configArn: string | undefined;
379
379
  name: string | undefined;
380
- configType?: ConfigCapabilityType;
380
+ configType?: ConfigCapabilityType | undefined;
381
381
  configData: ConfigTypeData | undefined;
382
- tags?: Record<string, string>;
382
+ tags?: Record<string, string> | undefined;
383
383
  }
384
384
  export interface ListConfigsRequest {
385
- maxResults?: number;
386
- nextToken?: string;
385
+ maxResults?: number | undefined;
386
+ nextToken?: string | undefined;
387
387
  }
388
388
  export interface ConfigListItem {
389
- configId?: string;
390
- configType?: ConfigCapabilityType;
391
- configArn?: string;
392
- name?: string;
389
+ configId?: string | undefined;
390
+ configType?: ConfigCapabilityType | undefined;
391
+ configArn?: string | undefined;
392
+ name?: string | undefined;
393
393
  }
394
394
  export interface ListConfigsResponse {
395
- nextToken?: string;
396
- configList?: ConfigListItem[];
395
+ nextToken?: string | undefined;
396
+ configList?: ConfigListItem[] | undefined;
397
397
  }
398
398
  export interface UpdateConfigRequest {
399
399
  configId: string | undefined;
@@ -411,10 +411,10 @@ export declare const EndpointStatus: {
411
411
  export type EndpointStatus =
412
412
  (typeof EndpointStatus)[keyof typeof EndpointStatus];
413
413
  export interface DataflowEndpoint {
414
- name?: string;
415
- address?: SocketAddress;
416
- status?: EndpointStatus;
417
- mtu?: number;
414
+ name?: string | undefined;
415
+ address?: SocketAddress | undefined;
416
+ status?: EndpointStatus | undefined;
417
+ mtu?: number | undefined;
418
418
  }
419
419
  export interface SecurityDetails {
420
420
  subnetIds: string[] | undefined;
@@ -422,15 +422,15 @@ export interface SecurityDetails {
422
422
  roleArn: string | undefined;
423
423
  }
424
424
  export interface EndpointDetails {
425
- securityDetails?: SecurityDetails;
426
- endpoint?: DataflowEndpoint;
427
- awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
428
- healthStatus?: CapabilityHealth;
429
- healthReasons?: CapabilityHealthReason[];
425
+ securityDetails?: SecurityDetails | undefined;
426
+ endpoint?: DataflowEndpoint | undefined;
427
+ awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint | undefined;
428
+ healthStatus?: CapabilityHealth | undefined;
429
+ healthReasons?: CapabilityHealthReason[] | undefined;
430
430
  }
431
431
  export interface S3RecordingDetails {
432
- bucketArn?: string;
433
- keyTemplate?: string;
432
+ bucketArn?: string | undefined;
433
+ keyTemplate?: string | undefined;
434
434
  }
435
435
  export type ConfigDetails =
436
436
  | ConfigDetails.AntennaDemodDecodeDetailsMember
@@ -490,74 +490,74 @@ export declare const ContactStatus: {
490
490
  };
491
491
  export type ContactStatus = (typeof ContactStatus)[keyof typeof ContactStatus];
492
492
  export interface Destination {
493
- configType?: ConfigCapabilityType;
494
- configId?: string;
495
- configDetails?: ConfigDetails;
496
- dataflowDestinationRegion?: string;
493
+ configType?: ConfigCapabilityType | undefined;
494
+ configId?: string | undefined;
495
+ configDetails?: ConfigDetails | undefined;
496
+ dataflowDestinationRegion?: string | undefined;
497
497
  }
498
498
  export interface Source {
499
- configType?: ConfigCapabilityType;
500
- configId?: string;
501
- configDetails?: ConfigDetails;
502
- dataflowSourceRegion?: string;
499
+ configType?: ConfigCapabilityType | undefined;
500
+ configId?: string | undefined;
501
+ configDetails?: ConfigDetails | undefined;
502
+ dataflowSourceRegion?: string | undefined;
503
503
  }
504
504
  export interface DataflowDetail {
505
- source?: Source;
506
- destination?: Destination;
507
- errorMessage?: string;
505
+ source?: Source | undefined;
506
+ destination?: Destination | undefined;
507
+ errorMessage?: string | undefined;
508
508
  }
509
509
  export interface Elevation {
510
510
  value: number | undefined;
511
511
  unit: AngleUnits | undefined;
512
512
  }
513
513
  export interface DescribeContactResponse {
514
- contactId?: string;
515
- missionProfileArn?: string;
516
- satelliteArn?: string;
517
- startTime?: Date;
518
- endTime?: Date;
519
- prePassStartTime?: Date;
520
- postPassEndTime?: Date;
521
- groundStation?: string;
522
- contactStatus?: ContactStatus;
523
- errorMessage?: string;
524
- maximumElevation?: Elevation;
525
- tags?: Record<string, string>;
526
- region?: string;
527
- dataflowList?: DataflowDetail[];
528
- visibilityStartTime?: Date;
529
- visibilityEndTime?: Date;
514
+ contactId?: string | undefined;
515
+ missionProfileArn?: string | undefined;
516
+ satelliteArn?: string | undefined;
517
+ startTime?: Date | undefined;
518
+ endTime?: Date | undefined;
519
+ prePassStartTime?: Date | undefined;
520
+ postPassEndTime?: Date | undefined;
521
+ groundStation?: string | undefined;
522
+ contactStatus?: ContactStatus | undefined;
523
+ errorMessage?: string | undefined;
524
+ maximumElevation?: Elevation | undefined;
525
+ tags?: Record<string, string> | undefined;
526
+ region?: string | undefined;
527
+ dataflowList?: DataflowDetail[] | undefined;
528
+ visibilityStartTime?: Date | undefined;
529
+ visibilityEndTime?: Date | undefined;
530
530
  }
531
531
  export interface ListContactsRequest {
532
- maxResults?: number;
533
- nextToken?: string;
532
+ maxResults?: number | undefined;
533
+ nextToken?: string | undefined;
534
534
  statusList: ContactStatus[] | undefined;
535
535
  startTime: Date | undefined;
536
536
  endTime: Date | undefined;
537
- groundStation?: string;
538
- satelliteArn?: string;
539
- missionProfileArn?: string;
537
+ groundStation?: string | undefined;
538
+ satelliteArn?: string | undefined;
539
+ missionProfileArn?: string | undefined;
540
540
  }
541
541
  export interface ContactData {
542
- contactId?: string;
543
- missionProfileArn?: string;
544
- satelliteArn?: string;
545
- startTime?: Date;
546
- endTime?: Date;
547
- prePassStartTime?: Date;
548
- postPassEndTime?: Date;
549
- groundStation?: string;
550
- contactStatus?: ContactStatus;
551
- errorMessage?: string;
552
- maximumElevation?: Elevation;
553
- region?: string;
554
- tags?: Record<string, string>;
555
- visibilityStartTime?: Date;
556
- visibilityEndTime?: Date;
542
+ contactId?: string | undefined;
543
+ missionProfileArn?: string | undefined;
544
+ satelliteArn?: string | undefined;
545
+ startTime?: Date | undefined;
546
+ endTime?: Date | undefined;
547
+ prePassStartTime?: Date | undefined;
548
+ postPassEndTime?: Date | undefined;
549
+ groundStation?: string | undefined;
550
+ contactStatus?: ContactStatus | undefined;
551
+ errorMessage?: string | undefined;
552
+ maximumElevation?: Elevation | undefined;
553
+ region?: string | undefined;
554
+ tags?: Record<string, string> | undefined;
555
+ visibilityStartTime?: Date | undefined;
556
+ visibilityEndTime?: Date | undefined;
557
557
  }
558
558
  export interface ListContactsResponse {
559
- nextToken?: string;
560
- contactList?: ContactData[];
559
+ nextToken?: string | undefined;
560
+ contactList?: ContactData[] | undefined;
561
561
  }
562
562
  export interface ReserveContactRequest {
563
563
  missionProfileArn: string | undefined;
@@ -565,25 +565,25 @@ export interface ReserveContactRequest {
565
565
  startTime: Date | undefined;
566
566
  endTime: Date | undefined;
567
567
  groundStation: string | undefined;
568
- tags?: Record<string, string>;
568
+ tags?: Record<string, string> | undefined;
569
569
  }
570
570
  export interface CreateDataflowEndpointGroupRequest {
571
571
  endpointDetails: EndpointDetails[] | undefined;
572
- tags?: Record<string, string>;
573
- contactPrePassDurationSeconds?: number;
574
- contactPostPassDurationSeconds?: number;
572
+ tags?: Record<string, string> | undefined;
573
+ contactPrePassDurationSeconds?: number | undefined;
574
+ contactPostPassDurationSeconds?: number | undefined;
575
575
  }
576
576
  export interface DataflowEndpointGroupIdResponse {
577
- dataflowEndpointGroupId?: string;
577
+ dataflowEndpointGroupId?: string | undefined;
578
578
  }
579
579
  export interface S3Object {
580
- bucket?: string;
581
- key?: string;
582
- version?: string;
580
+ bucket?: string | undefined;
581
+ key?: string | undefined;
582
+ version?: string | undefined;
583
583
  }
584
584
  export interface OEMEphemeris {
585
- s3Object?: S3Object;
586
- oemData?: string;
585
+ s3Object?: S3Object | undefined;
586
+ oemData?: string | undefined;
587
587
  }
588
588
  export interface TimeRange {
589
589
  startTime: Date | undefined;
@@ -595,8 +595,8 @@ export interface TLEData {
595
595
  validTimeRange: TimeRange | undefined;
596
596
  }
597
597
  export interface TLEEphemeris {
598
- s3Object?: S3Object;
599
- tleData?: TLEData[];
598
+ s3Object?: S3Object | undefined;
599
+ tleData?: TLEData[] | undefined;
600
600
  }
601
601
  export type EphemerisData =
602
602
  | EphemerisData.OemMember
@@ -627,16 +627,16 @@ export declare namespace EphemerisData {
627
627
  }
628
628
  export interface CreateEphemerisRequest {
629
629
  satelliteId: string | undefined;
630
- enabled?: boolean;
631
- priority?: number;
632
- expirationTime?: Date;
630
+ enabled?: boolean | undefined;
631
+ priority?: number | undefined;
632
+ expirationTime?: Date | undefined;
633
633
  name: string | undefined;
634
- kmsKeyArn?: string;
635
- ephemeris?: EphemerisData;
636
- tags?: Record<string, string>;
634
+ kmsKeyArn?: string | undefined;
635
+ ephemeris?: EphemerisData | undefined;
636
+ tags?: Record<string, string> | undefined;
637
637
  }
638
638
  export interface EphemerisIdResponse {
639
- ephemerisId?: string;
639
+ ephemerisId?: string | undefined;
640
640
  }
641
641
  export type KmsKey =
642
642
  | KmsKey.KmsAliasArnMember
@@ -678,17 +678,17 @@ export declare namespace KmsKey {
678
678
  }
679
679
  export interface CreateMissionProfileRequest {
680
680
  name: string | undefined;
681
- contactPrePassDurationSeconds?: number;
682
- contactPostPassDurationSeconds?: number;
681
+ contactPrePassDurationSeconds?: number | undefined;
682
+ contactPostPassDurationSeconds?: number | undefined;
683
683
  minimumViableContactDurationSeconds: number | undefined;
684
684
  dataflowEdges: string[][] | undefined;
685
685
  trackingConfigArn: string | undefined;
686
- tags?: Record<string, string>;
687
- streamsKmsKey?: KmsKey;
688
- streamsKmsRole?: string;
686
+ tags?: Record<string, string> | undefined;
687
+ streamsKmsKey?: KmsKey | undefined;
688
+ streamsKmsRole?: string | undefined;
689
689
  }
690
690
  export interface MissionProfileIdResponse {
691
- missionProfileId?: string;
691
+ missionProfileId?: string | undefined;
692
692
  }
693
693
  export interface DeleteDataflowEndpointGroupRequest {
694
694
  dataflowEndpointGroupId: string | undefined;
@@ -697,24 +697,24 @@ export interface GetDataflowEndpointGroupRequest {
697
697
  dataflowEndpointGroupId: string | undefined;
698
698
  }
699
699
  export interface GetDataflowEndpointGroupResponse {
700
- dataflowEndpointGroupId?: string;
701
- dataflowEndpointGroupArn?: string;
702
- endpointsDetails?: EndpointDetails[];
703
- tags?: Record<string, string>;
704
- contactPrePassDurationSeconds?: number;
705
- contactPostPassDurationSeconds?: number;
700
+ dataflowEndpointGroupId?: string | undefined;
701
+ dataflowEndpointGroupArn?: string | undefined;
702
+ endpointsDetails?: EndpointDetails[] | undefined;
703
+ tags?: Record<string, string> | undefined;
704
+ contactPrePassDurationSeconds?: number | undefined;
705
+ contactPostPassDurationSeconds?: number | undefined;
706
706
  }
707
707
  export interface ListDataflowEndpointGroupsRequest {
708
- maxResults?: number;
709
- nextToken?: string;
708
+ maxResults?: number | undefined;
709
+ nextToken?: string | undefined;
710
710
  }
711
711
  export interface DataflowEndpointListItem {
712
- dataflowEndpointGroupId?: string;
713
- dataflowEndpointGroupArn?: string;
712
+ dataflowEndpointGroupId?: string | undefined;
713
+ dataflowEndpointGroupArn?: string | undefined;
714
714
  }
715
715
  export interface ListDataflowEndpointGroupsResponse {
716
- nextToken?: string;
717
- dataflowEndpointGroupList?: DataflowEndpointListItem[];
716
+ nextToken?: string | undefined;
717
+ dataflowEndpointGroupList?: DataflowEndpointListItem[] | undefined;
718
718
  }
719
719
  export interface DeleteEphemerisRequest {
720
720
  ephemerisId: string | undefined;
@@ -745,8 +745,8 @@ export declare const EphemerisStatus: {
745
745
  export type EphemerisStatus =
746
746
  (typeof EphemerisStatus)[keyof typeof EphemerisStatus];
747
747
  export interface EphemerisDescription {
748
- sourceS3Object?: S3Object;
749
- ephemerisData?: string;
748
+ sourceS3Object?: S3Object | undefined;
749
+ ephemerisData?: string | undefined;
750
750
  }
751
751
  export type EphemerisTypeDescription =
752
752
  | EphemerisTypeDescription.OemMember
@@ -776,43 +776,43 @@ export declare namespace EphemerisTypeDescription {
776
776
  const visit: <T>(value: EphemerisTypeDescription, visitor: Visitor<T>) => T;
777
777
  }
778
778
  export interface DescribeEphemerisResponse {
779
- ephemerisId?: string;
780
- satelliteId?: string;
781
- status?: EphemerisStatus;
782
- priority?: number;
783
- creationTime?: Date;
784
- enabled?: boolean;
785
- name?: string;
786
- tags?: Record<string, string>;
787
- suppliedData?: EphemerisTypeDescription;
788
- invalidReason?: EphemerisInvalidReason;
779
+ ephemerisId?: string | undefined;
780
+ satelliteId?: string | undefined;
781
+ status?: EphemerisStatus | undefined;
782
+ priority?: number | undefined;
783
+ creationTime?: Date | undefined;
784
+ enabled?: boolean | undefined;
785
+ name?: string | undefined;
786
+ tags?: Record<string, string> | undefined;
787
+ suppliedData?: EphemerisTypeDescription | undefined;
788
+ invalidReason?: EphemerisInvalidReason | undefined;
789
789
  }
790
790
  export interface EphemerisItem {
791
- ephemerisId?: string;
792
- status?: EphemerisStatus;
793
- priority?: number;
794
- enabled?: boolean;
795
- creationTime?: Date;
796
- name?: string;
797
- sourceS3Object?: S3Object;
791
+ ephemerisId?: string | undefined;
792
+ status?: EphemerisStatus | undefined;
793
+ priority?: number | undefined;
794
+ enabled?: boolean | undefined;
795
+ creationTime?: Date | undefined;
796
+ name?: string | undefined;
797
+ sourceS3Object?: S3Object | undefined;
798
798
  }
799
799
  export interface ListEphemeridesRequest {
800
800
  satelliteId: string | undefined;
801
801
  startTime: Date | undefined;
802
802
  endTime: Date | undefined;
803
- statusList?: EphemerisStatus[];
804
- maxResults?: number;
805
- nextToken?: string;
803
+ statusList?: EphemerisStatus[] | undefined;
804
+ maxResults?: number | undefined;
805
+ nextToken?: string | undefined;
806
806
  }
807
807
  export interface ListEphemeridesResponse {
808
- nextToken?: string;
809
- ephemerides?: EphemerisItem[];
808
+ nextToken?: string | undefined;
809
+ ephemerides?: EphemerisItem[] | undefined;
810
810
  }
811
811
  export interface UpdateEphemerisRequest {
812
812
  ephemerisId: string | undefined;
813
813
  enabled: boolean | undefined;
814
- name?: string;
815
- priority?: number;
814
+ name?: string | undefined;
815
+ priority?: number | undefined;
816
816
  }
817
817
  export declare const EphemerisSource: {
818
818
  readonly CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED";
@@ -822,107 +822,107 @@ export type EphemerisSource =
822
822
  (typeof EphemerisSource)[keyof typeof EphemerisSource];
823
823
  export interface EphemerisMetaData {
824
824
  source: EphemerisSource | undefined;
825
- ephemerisId?: string;
826
- epoch?: Date;
827
- name?: string;
825
+ ephemerisId?: string | undefined;
826
+ epoch?: Date | undefined;
827
+ name?: string | undefined;
828
828
  }
829
829
  export interface GetMinuteUsageRequest {
830
830
  month: number | undefined;
831
831
  year: number | undefined;
832
832
  }
833
833
  export interface GetMinuteUsageResponse {
834
- isReservedMinutesCustomer?: boolean;
835
- totalReservedMinuteAllocation?: number;
836
- upcomingMinutesScheduled?: number;
837
- totalScheduledMinutes?: number;
838
- estimatedMinutesRemaining?: number;
834
+ isReservedMinutesCustomer?: boolean | undefined;
835
+ totalReservedMinuteAllocation?: number | undefined;
836
+ upcomingMinutesScheduled?: number | undefined;
837
+ totalScheduledMinutes?: number | undefined;
838
+ estimatedMinutesRemaining?: number | undefined;
839
839
  }
840
840
  export interface GetMissionProfileRequest {
841
841
  missionProfileId: string | undefined;
842
842
  }
843
843
  export interface GetMissionProfileResponse {
844
- missionProfileId?: string;
845
- missionProfileArn?: string;
846
- name?: string;
847
- region?: string;
848
- contactPrePassDurationSeconds?: number;
849
- contactPostPassDurationSeconds?: number;
850
- minimumViableContactDurationSeconds?: number;
851
- dataflowEdges?: string[][];
852
- trackingConfigArn?: string;
853
- tags?: Record<string, string>;
854
- streamsKmsKey?: KmsKey;
855
- streamsKmsRole?: string;
844
+ missionProfileId?: string | undefined;
845
+ missionProfileArn?: string | undefined;
846
+ name?: string | undefined;
847
+ region?: string | undefined;
848
+ contactPrePassDurationSeconds?: number | undefined;
849
+ contactPostPassDurationSeconds?: number | undefined;
850
+ minimumViableContactDurationSeconds?: number | undefined;
851
+ dataflowEdges?: string[][] | undefined;
852
+ trackingConfigArn?: string | undefined;
853
+ tags?: Record<string, string> | undefined;
854
+ streamsKmsKey?: KmsKey | undefined;
855
+ streamsKmsRole?: string | undefined;
856
856
  }
857
857
  export interface GetSatelliteRequest {
858
858
  satelliteId: string | undefined;
859
859
  }
860
860
  export interface GetSatelliteResponse {
861
- satelliteId?: string;
862
- satelliteArn?: string;
863
- noradSatelliteID?: number;
864
- groundStations?: string[];
865
- currentEphemeris?: EphemerisMetaData;
861
+ satelliteId?: string | undefined;
862
+ satelliteArn?: string | undefined;
863
+ noradSatelliteID?: number | undefined;
864
+ groundStations?: string[] | undefined;
865
+ currentEphemeris?: EphemerisMetaData | undefined;
866
866
  }
867
867
  export interface ListGroundStationsRequest {
868
- satelliteId?: string;
869
- maxResults?: number;
870
- nextToken?: string;
868
+ satelliteId?: string | undefined;
869
+ maxResults?: number | undefined;
870
+ nextToken?: string | undefined;
871
871
  }
872
872
  export interface GroundStationData {
873
- groundStationId?: string;
874
- groundStationName?: string;
875
- region?: string;
873
+ groundStationId?: string | undefined;
874
+ groundStationName?: string | undefined;
875
+ region?: string | undefined;
876
876
  }
877
877
  export interface ListGroundStationsResponse {
878
- nextToken?: string;
879
- groundStationList?: GroundStationData[];
878
+ nextToken?: string | undefined;
879
+ groundStationList?: GroundStationData[] | undefined;
880
880
  }
881
881
  export interface ListTagsForResourceRequest {
882
882
  resourceArn: string | undefined;
883
883
  }
884
884
  export interface ListTagsForResourceResponse {
885
- tags?: Record<string, string>;
885
+ tags?: Record<string, string> | undefined;
886
886
  }
887
887
  export interface ListMissionProfilesRequest {
888
- maxResults?: number;
889
- nextToken?: string;
888
+ maxResults?: number | undefined;
889
+ nextToken?: string | undefined;
890
890
  }
891
891
  export interface MissionProfileListItem {
892
- missionProfileId?: string;
893
- missionProfileArn?: string;
894
- region?: string;
895
- name?: string;
892
+ missionProfileId?: string | undefined;
893
+ missionProfileArn?: string | undefined;
894
+ region?: string | undefined;
895
+ name?: string | undefined;
896
896
  }
897
897
  export interface ListMissionProfilesResponse {
898
- nextToken?: string;
899
- missionProfileList?: MissionProfileListItem[];
898
+ nextToken?: string | undefined;
899
+ missionProfileList?: MissionProfileListItem[] | undefined;
900
900
  }
901
901
  export interface UpdateMissionProfileRequest {
902
902
  missionProfileId: string | undefined;
903
- name?: string;
904
- contactPrePassDurationSeconds?: number;
905
- contactPostPassDurationSeconds?: number;
906
- minimumViableContactDurationSeconds?: number;
907
- dataflowEdges?: string[][];
908
- trackingConfigArn?: string;
909
- streamsKmsKey?: KmsKey;
910
- streamsKmsRole?: string;
903
+ name?: string | undefined;
904
+ contactPrePassDurationSeconds?: number | undefined;
905
+ contactPostPassDurationSeconds?: number | undefined;
906
+ minimumViableContactDurationSeconds?: number | undefined;
907
+ dataflowEdges?: string[][] | undefined;
908
+ trackingConfigArn?: string | undefined;
909
+ streamsKmsKey?: KmsKey | undefined;
910
+ streamsKmsRole?: string | undefined;
911
911
  }
912
912
  export interface ListSatellitesRequest {
913
- maxResults?: number;
914
- nextToken?: string;
913
+ maxResults?: number | undefined;
914
+ nextToken?: string | undefined;
915
915
  }
916
916
  export interface SatelliteListItem {
917
- satelliteId?: string;
918
- satelliteArn?: string;
919
- noradSatelliteID?: number;
920
- groundStations?: string[];
921
- currentEphemeris?: EphemerisMetaData;
917
+ satelliteId?: string | undefined;
918
+ satelliteArn?: string | undefined;
919
+ noradSatelliteID?: number | undefined;
920
+ groundStations?: string[] | undefined;
921
+ currentEphemeris?: EphemerisMetaData | undefined;
922
922
  }
923
923
  export interface ListSatellitesResponse {
924
- nextToken?: string;
925
- satellites?: SatelliteListItem[];
924
+ nextToken?: string | undefined;
925
+ satellites?: SatelliteListItem[] | undefined;
926
926
  }
927
927
  export interface TagResourceRequest {
928
928
  resourceArn: string | undefined;