aws-sdk-groundstation 1.73.0 → 1.74.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.
@@ -508,89 +508,89 @@ module Aws::GroundStation
508
508
  #
509
509
  # Only one type of `configData` can be specified.
510
510
  #
511
- # @option params [required, Types::ConfigTypeData] :config_data
512
- # Parameters of a `Config`.
513
- #
514
511
  # @option params [required, String] :name
515
512
  # Name of a `Config`.
516
513
  #
514
+ # @option params [required, Types::ConfigTypeData] :config_data
515
+ # Parameters of a `Config`.
516
+ #
517
517
  # @option params [Hash<String,String>] :tags
518
518
  # Tags assigned to a `Config`.
519
519
  #
520
520
  # @return [Types::ConfigIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
521
521
  #
522
- # * {Types::ConfigIdResponse#config_arn #config_arn} => String
523
522
  # * {Types::ConfigIdResponse#config_id #config_id} => String
524
523
  # * {Types::ConfigIdResponse#config_type #config_type} => String
524
+ # * {Types::ConfigIdResponse#config_arn #config_arn} => String
525
525
  #
526
526
  # @example Request syntax with placeholder values
527
527
  #
528
528
  # resp = client.create_config({
529
+ # name: "SafeName", # required
529
530
  # config_data: { # required
530
531
  # antenna_downlink_config: {
531
532
  # spectrum_config: { # required
532
- # bandwidth: { # required
533
- # units: "GHz", # required, accepts GHz, MHz, kHz
534
- # value: 1.0, # required
535
- # },
536
533
  # center_frequency: { # required
534
+ # value: 1.0, # required
537
535
  # units: "GHz", # required, accepts GHz, MHz, kHz
536
+ # },
537
+ # bandwidth: { # required
538
538
  # value: 1.0, # required
539
+ # units: "GHz", # required, accepts GHz, MHz, kHz
539
540
  # },
540
541
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
541
542
  # },
542
543
  # },
544
+ # tracking_config: {
545
+ # autotrack: "REQUIRED", # required, accepts REQUIRED, PREFERRED, REMOVED
546
+ # },
547
+ # dataflow_endpoint_config: {
548
+ # dataflow_endpoint_name: "String", # required
549
+ # dataflow_endpoint_region: "String",
550
+ # },
543
551
  # antenna_downlink_demod_decode_config: {
544
- # decode_config: { # required
545
- # unvalidated_json: "JsonString", # required
546
- # },
547
- # demodulation_config: { # required
548
- # unvalidated_json: "JsonString", # required
549
- # },
550
552
  # spectrum_config: { # required
551
- # bandwidth: { # required
552
- # units: "GHz", # required, accepts GHz, MHz, kHz
553
- # value: 1.0, # required
554
- # },
555
553
  # center_frequency: { # required
554
+ # value: 1.0, # required
556
555
  # units: "GHz", # required, accepts GHz, MHz, kHz
556
+ # },
557
+ # bandwidth: { # required
557
558
  # value: 1.0, # required
559
+ # units: "GHz", # required, accepts GHz, MHz, kHz
558
560
  # },
559
561
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
560
562
  # },
563
+ # demodulation_config: { # required
564
+ # unvalidated_json: "JsonString", # required
565
+ # },
566
+ # decode_config: { # required
567
+ # unvalidated_json: "JsonString", # required
568
+ # },
561
569
  # },
562
570
  # antenna_uplink_config: {
571
+ # transmit_disabled: false,
563
572
  # spectrum_config: { # required
564
573
  # center_frequency: { # required
565
- # units: "GHz", # required, accepts GHz, MHz, kHz
566
574
  # value: 1.0, # required
575
+ # units: "GHz", # required, accepts GHz, MHz, kHz
567
576
  # },
568
577
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
569
578
  # },
570
579
  # target_eirp: { # required
571
- # units: "dBW", # required, accepts dBW
572
580
  # value: 1.0, # required
581
+ # units: "dBW", # required, accepts dBW
573
582
  # },
574
- # transmit_disabled: false,
575
583
  # },
576
- # dataflow_endpoint_config: {
577
- # dataflow_endpoint_name: "String", # required
578
- # dataflow_endpoint_region: "String",
584
+ # uplink_echo_config: {
585
+ # enabled: false, # required
586
+ # antenna_uplink_config_arn: "ConfigArn", # required
579
587
  # },
580
588
  # s3_recording_config: {
581
589
  # bucket_arn: "BucketArn", # required
582
- # prefix: "S3KeyPrefix",
583
590
  # role_arn: "RoleArn", # required
584
- # },
585
- # tracking_config: {
586
- # autotrack: "REQUIRED", # required, accepts REQUIRED, PREFERRED, REMOVED
587
- # },
588
- # uplink_echo_config: {
589
- # antenna_uplink_config_arn: "ConfigArn", # required
590
- # enabled: false, # required
591
+ # prefix: "S3KeyPrefix",
591
592
  # },
592
593
  # },
593
- # name: "SafeName", # required
594
594
  # tags: {
595
595
  # "String" => "String",
596
596
  # },
@@ -598,9 +598,9 @@ module Aws::GroundStation
598
598
  #
599
599
  # @example Response structure
600
600
  #
601
- # resp.config_arn #=> String
602
601
  # resp.config_id #=> String
603
602
  # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
603
+ # resp.config_arn #=> String
604
604
  #
605
605
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateConfig AWS API Documentation
606
606
  #
@@ -621,12 +621,21 @@ module Aws::GroundStation
621
621
  # When a contact uses multiple `DataflowEndpointConfig` objects, each
622
622
  # `Config` must match a `DataflowEndpoint` in the same group.
623
623
  #
624
- # @option params [Integer] :contact_post_pass_duration_seconds
625
- # Amount of time, in seconds, after a contact ends that the Ground
626
- # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
627
- # Ground Station Dataflow Endpoint Group State Change event will be
628
- # emitted when the Dataflow Endpoint Group enters and exits the
629
- # `POSTPASS` state.
624
+ # @option params [required, Array<Types::EndpointDetails>] :endpoint_details
625
+ # Endpoint details of each endpoint in the dataflow endpoint group. All
626
+ # dataflow endpoints within a single dataflow endpoint group must be of
627
+ # the same type. You cannot mix [ AWS Ground Station Agent endpoints][1]
628
+ # with [Dataflow endpoints][2] in the same group. If your use case
629
+ # requires both types of endpoints, you must create separate dataflow
630
+ # endpoint groups for each type.
631
+ #
632
+ #
633
+ #
634
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html
635
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html
636
+ #
637
+ # @option params [Hash<String,String>] :tags
638
+ # Tags of a dataflow endpoint group.
630
639
  #
631
640
  # @option params [Integer] :contact_pre_pass_duration_seconds
632
641
  # Amount of time, in seconds, before a contact starts that the Ground
@@ -634,19 +643,12 @@ module Aws::GroundStation
634
643
  # Station Dataflow Endpoint Group State Change event will be emitted
635
644
  # when the Dataflow Endpoint Group enters and exits the `PREPASS` state.
636
645
  #
637
- # @option params [required, Array<Types::EndpointDetails>] :endpoint_details
638
- # Endpoint details of each endpoint in the dataflow endpoint group.
639
- # All dataflow endpoints within a single dataflow endpoint group must be
640
- # of the same type. You cannot mix <a
641
- # href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html">
642
- # AWS Ground Station Agent endpoints</a> with <a
643
- # href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html">Dataflow
644
- # endpoints</a> in the same group. If your use case requires both types
645
- # of endpoints, you must create separate dataflow endpoint groups for
646
- # each type. </p>
647
- #
648
- # @option params [Hash<String,String>] :tags
649
- # Tags of a dataflow endpoint group.
646
+ # @option params [Integer] :contact_post_pass_duration_seconds
647
+ # Amount of time, in seconds, after a contact ends that the Ground
648
+ # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
649
+ # Ground Station Dataflow Endpoint Group State Change event will be
650
+ # emitted when the Dataflow Endpoint Group enters and exits the
651
+ # `POSTPASS` state.
650
652
  #
651
653
  # @return [Types::DataflowEndpointGroupIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
652
654
  #
@@ -655,53 +657,53 @@ module Aws::GroundStation
655
657
  # @example Request syntax with placeholder values
656
658
  #
657
659
  # resp = client.create_dataflow_endpoint_group({
658
- # contact_post_pass_duration_seconds: 1,
659
- # contact_pre_pass_duration_seconds: 1,
660
660
  # endpoint_details: [ # required
661
661
  # {
662
+ # security_details: {
663
+ # subnet_ids: ["String"], # required
664
+ # security_group_ids: ["String"], # required
665
+ # role_arn: "RoleArn", # required
666
+ # },
667
+ # endpoint: {
668
+ # name: "SafeName",
669
+ # address: {
670
+ # name: "String", # required
671
+ # port: 1, # required
672
+ # },
673
+ # status: "created", # accepts created, creating, deleted, deleting, failed
674
+ # mtu: 1,
675
+ # },
662
676
  # aws_ground_station_agent_endpoint: {
663
- # agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
664
- # audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
677
+ # name: "SafeName", # required
665
678
  # egress_address: { # required
666
- # mtu: 1,
667
679
  # socket_address: { # required
668
680
  # name: "String", # required
669
681
  # port: 1, # required
670
682
  # },
683
+ # mtu: 1,
671
684
  # },
672
685
  # ingress_address: { # required
673
- # mtu: 1,
674
686
  # socket_address: { # required
675
687
  # name: "IpV4Address", # required
676
688
  # port_range: { # required
677
- # maximum: 1, # required
678
689
  # minimum: 1, # required
690
+ # maximum: 1, # required
679
691
  # },
680
692
  # },
693
+ # mtu: 1,
681
694
  # },
682
- # name: "SafeName", # required
683
- # },
684
- # endpoint: {
685
- # address: {
686
- # name: "String", # required
687
- # port: 1, # required
688
- # },
689
- # mtu: 1,
690
- # name: "SafeName",
691
- # status: "created", # accepts created, creating, deleted, deleting, failed
695
+ # agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
696
+ # audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
692
697
  # },
693
- # health_reasons: ["NO_REGISTERED_AGENT"], # accepts NO_REGISTERED_AGENT, INVALID_IP_OWNERSHIP, NOT_AUTHORIZED_TO_CREATE_SLR, UNVERIFIED_IP_OWNERSHIP, INITIALIZING_DATAPLANE, DATAPLANE_FAILURE, HEALTHY
694
698
  # health_status: "HEALTHY", # accepts HEALTHY, UNHEALTHY
695
- # security_details: {
696
- # role_arn: "RoleArn", # required
697
- # security_group_ids: ["String"], # required
698
- # subnet_ids: ["String"], # required
699
- # },
699
+ # health_reasons: ["NO_REGISTERED_AGENT"], # accepts NO_REGISTERED_AGENT, INVALID_IP_OWNERSHIP, NOT_AUTHORIZED_TO_CREATE_SLR, UNVERIFIED_IP_OWNERSHIP, INITIALIZING_DATAPLANE, DATAPLANE_FAILURE, HEALTHY
700
700
  # },
701
701
  # ],
702
702
  # tags: {
703
703
  # "String" => "String",
704
704
  # },
705
+ # contact_pre_pass_duration_seconds: 1,
706
+ # contact_post_pass_duration_seconds: 1,
705
707
  # })
706
708
  #
707
709
  # @example Response structure
@@ -717,39 +719,35 @@ module Aws::GroundStation
717
719
  req.send_request(options)
718
720
  end
719
721
 
720
- # Creates an Ephemeris with the specified `EphemerisData`.
722
+ # Create an ephemeris with your specified EphemerisData.
723
+ #
724
+ # @option params [String] :satellite_id
725
+ # The satellite ID that associates this ephemeris with a satellite in
726
+ # AWS Ground Station.
721
727
  #
722
728
  # @option params [Boolean] :enabled
723
- # Whether to set the ephemeris status to `ENABLED` after validation.
729
+ # Set to `true` to enable the ephemeris after validation. Set to `false`
730
+ # to keep it disabled.
724
731
  #
725
- # Setting this to false will set the ephemeris status to `DISABLED`
726
- # after validation.
732
+ # @option params [Integer] :priority
733
+ # A priority score that determines which ephemeris to use when multiple
734
+ # ephemerides overlap.
727
735
  #
728
- # @option params [Types::EphemerisData] :ephemeris
729
- # Ephemeris data.
736
+ # Higher numbers take precedence. The default is 1. Must be 1 or
737
+ # greater.
730
738
  #
731
739
  # @option params [Time,DateTime,Date,Integer,String] :expiration_time
732
740
  # An overall expiration time for the ephemeris in UTC, after which it
733
741
  # will become `EXPIRED`.
734
742
  #
735
- # @option params [String] :kms_key_arn
736
- # The ARN of a KMS key used to encrypt the ephemeris in Ground Station.
737
- #
738
743
  # @option params [required, String] :name
739
- # A name string associated with the ephemeris. Used as a human-readable
740
- # identifier for the ephemeris.
744
+ # A name that you can use to identify the ephemeris.
741
745
  #
742
- # @option params [Integer] :priority
743
- # Customer-provided priority score to establish the order in which
744
- # overlapping ephemerides should be used.
745
- #
746
- # The default for customer-provided ephemeris priority is 1, and higher
747
- # numbers take precedence.
748
- #
749
- # Priority must be 1 or greater
746
+ # @option params [String] :kms_key_arn
747
+ # The ARN of the KMS key to use for encrypting the ephemeris.
750
748
  #
751
- # @option params [required, String] :satellite_id
752
- # AWS Ground Station satellite ID for this ephemeris.
749
+ # @option params [Types::EphemerisData] :ephemeris
750
+ # Ephemeris data.
753
751
  #
754
752
  # @option params [Hash<String,String>] :tags
755
753
  # Tags assigned to an ephemeris.
@@ -761,16 +759,13 @@ module Aws::GroundStation
761
759
  # @example Request syntax with placeholder values
762
760
  #
763
761
  # resp = client.create_ephemeris({
762
+ # satellite_id: "Uuid",
764
763
  # enabled: false,
764
+ # priority: 1,
765
+ # expiration_time: Time.now,
766
+ # name: "SafeName", # required
767
+ # kms_key_arn: "KeyArn",
765
768
  # ephemeris: {
766
- # oem: {
767
- # oem_data: "UnboundedString",
768
- # s3_object: {
769
- # bucket: "S3BucketName",
770
- # key: "S3ObjectKey",
771
- # version: "S3VersionId",
772
- # },
773
- # },
774
769
  # tle: {
775
770
  # s3_object: {
776
771
  # bucket: "S3BucketName",
@@ -782,18 +777,50 @@ module Aws::GroundStation
782
777
  # tle_line_1: "TleLineOne", # required
783
778
  # tle_line_2: "TleLineTwo", # required
784
779
  # valid_time_range: { # required
785
- # end_time: Time.now, # required
786
780
  # start_time: Time.now, # required
781
+ # end_time: Time.now, # required
787
782
  # },
788
783
  # },
789
784
  # ],
790
785
  # },
786
+ # oem: {
787
+ # s3_object: {
788
+ # bucket: "S3BucketName",
789
+ # key: "S3ObjectKey",
790
+ # version: "S3VersionId",
791
+ # },
792
+ # oem_data: "UnboundedString",
793
+ # },
794
+ # az_el: {
795
+ # ground_station: "GroundStationName", # required
796
+ # data: { # required
797
+ # s3_object: {
798
+ # bucket: "S3BucketName",
799
+ # key: "S3ObjectKey",
800
+ # version: "S3VersionId",
801
+ # },
802
+ # az_el_data: {
803
+ # angle_unit: "DEGREE_ANGLE", # required, accepts DEGREE_ANGLE, RADIAN
804
+ # az_el_segment_list: [ # required
805
+ # {
806
+ # reference_epoch: Time.now, # required
807
+ # valid_time_range: { # required
808
+ # start_time: Time.now, # required
809
+ # end_time: Time.now, # required
810
+ # },
811
+ # az_el_list: [ # required
812
+ # {
813
+ # dt: 1.0, # required
814
+ # az: 1.0, # required
815
+ # el: 1.0, # required
816
+ # },
817
+ # ],
818
+ # },
819
+ # ],
820
+ # },
821
+ # },
822
+ # },
791
823
  # },
792
- # expiration_time: Time.now,
793
- # kms_key_arn: "KeyArn",
794
- # name: "SafeName", # required
795
- # priority: 1,
796
- # satellite_id: "Uuid", # required
797
824
  # tags: {
798
825
  # "String" => "String",
799
826
  # },
@@ -817,26 +844,32 @@ module Aws::GroundStation
817
844
  # `dataflowEdges` is a list of lists of strings. Each lower level list
818
845
  # of strings has two elements: a *from* ARN and a *to* ARN.
819
846
  #
820
- # @option params [Integer] :contact_post_pass_duration_seconds
821
- # Amount of time after a contact ends that you’d like to receive a
822
- # Ground Station Contact State Change event indicating the pass has
823
- # finished.
847
+ # @option params [required, String] :name
848
+ # Name of a mission profile.
824
849
  #
825
850
  # @option params [Integer] :contact_pre_pass_duration_seconds
826
851
  # Amount of time prior to contact start you’d like to receive a Ground
827
852
  # Station Contact State Change event indicating an upcoming pass.
828
853
  #
829
- # @option params [required, Array<Array>] :dataflow_edges
830
- # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
831
- # `Config` and a *to* `Config`.
854
+ # @option params [Integer] :contact_post_pass_duration_seconds
855
+ # Amount of time after a contact ends that you’d like to receive a
856
+ # Ground Station Contact State Change event indicating the pass has
857
+ # finished.
832
858
  #
833
859
  # @option params [required, Integer] :minimum_viable_contact_duration_seconds
834
860
  # Smallest amount of time in seconds that you’d like to see for an
835
861
  # available contact. AWS Ground Station will not present you with
836
862
  # contacts shorter than this duration.
837
863
  #
838
- # @option params [required, String] :name
839
- # Name of a mission profile.
864
+ # @option params [required, Array<Array>] :dataflow_edges
865
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
866
+ # `Config` and a *to* `Config`.
867
+ #
868
+ # @option params [required, String] :tracking_config_arn
869
+ # ARN of a tracking `Config`.
870
+ #
871
+ # @option params [Hash<String,String>] :tags
872
+ # Tags assigned to a mission profile.
840
873
  #
841
874
  # @option params [Types::KmsKey] :streams_kms_key
842
875
  # KMS key to use for encrypting streams.
@@ -844,12 +877,6 @@ module Aws::GroundStation
844
877
  # @option params [String] :streams_kms_role
845
878
  # Role to use for encrypting streams with KMS key.
846
879
  #
847
- # @option params [Hash<String,String>] :tags
848
- # Tags assigned to a mission profile.
849
- #
850
- # @option params [required, String] :tracking_config_arn
851
- # ARN of a tracking `Config`.
852
- #
853
880
  # @return [Types::MissionProfileIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
854
881
  #
855
882
  # * {Types::MissionProfileIdResponse#mission_profile_id #mission_profile_id} => String
@@ -857,23 +884,23 @@ module Aws::GroundStation
857
884
  # @example Request syntax with placeholder values
858
885
  #
859
886
  # resp = client.create_mission_profile({
860
- # contact_post_pass_duration_seconds: 1,
887
+ # name: "SafeName", # required
861
888
  # contact_pre_pass_duration_seconds: 1,
889
+ # contact_post_pass_duration_seconds: 1,
890
+ # minimum_viable_contact_duration_seconds: 1, # required
862
891
  # dataflow_edges: [ # required
863
892
  # ["ConfigArn"],
864
893
  # ],
865
- # minimum_viable_contact_duration_seconds: 1, # required
866
- # name: "SafeName", # required
894
+ # tracking_config_arn: "ConfigArn", # required
895
+ # tags: {
896
+ # "String" => "String",
897
+ # },
867
898
  # streams_kms_key: {
899
+ # kms_key_arn: "KeyArn",
868
900
  # kms_alias_arn: "KeyAliasArn",
869
901
  # kms_alias_name: "KeyAliasName",
870
- # kms_key_arn: "KeyArn",
871
902
  # },
872
903
  # streams_kms_role: "RoleArn",
873
- # tags: {
874
- # "String" => "String",
875
- # },
876
- # tracking_config_arn: "ConfigArn", # required
877
904
  # })
878
905
  #
879
906
  # @example Response structure
@@ -899,9 +926,9 @@ module Aws::GroundStation
899
926
  #
900
927
  # @return [Types::ConfigIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
901
928
  #
902
- # * {Types::ConfigIdResponse#config_arn #config_arn} => String
903
929
  # * {Types::ConfigIdResponse#config_id #config_id} => String
904
930
  # * {Types::ConfigIdResponse#config_type #config_type} => String
931
+ # * {Types::ConfigIdResponse#config_arn #config_arn} => String
905
932
  #
906
933
  # @example Request syntax with placeholder values
907
934
  #
@@ -912,9 +939,9 @@ module Aws::GroundStation
912
939
  #
913
940
  # @example Response structure
914
941
  #
915
- # resp.config_arn #=> String
916
942
  # resp.config_id #=> String
917
943
  # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
944
+ # resp.config_arn #=> String
918
945
  #
919
946
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DeleteConfig AWS API Documentation
920
947
  #
@@ -953,7 +980,7 @@ module Aws::GroundStation
953
980
  req.send_request(options)
954
981
  end
955
982
 
956
- # Deletes an ephemeris
983
+ # Delete an ephemeris.
957
984
  #
958
985
  # @option params [required, String] :ephemeris_id
959
986
  # The AWS Ground Station ephemeris ID.
@@ -1017,21 +1044,23 @@ module Aws::GroundStation
1017
1044
  # @return [Types::DescribeContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1018
1045
  #
1019
1046
  # * {Types::DescribeContactResponse#contact_id #contact_id} => String
1020
- # * {Types::DescribeContactResponse#contact_status #contact_status} => String
1021
- # * {Types::DescribeContactResponse#dataflow_list #dataflow_list} => Array&lt;Types::DataflowDetail&gt;
1022
- # * {Types::DescribeContactResponse#end_time #end_time} => Time
1023
- # * {Types::DescribeContactResponse#error_message #error_message} => String
1024
- # * {Types::DescribeContactResponse#ground_station #ground_station} => String
1025
- # * {Types::DescribeContactResponse#maximum_elevation #maximum_elevation} => Types::Elevation
1026
1047
  # * {Types::DescribeContactResponse#mission_profile_arn #mission_profile_arn} => String
1027
- # * {Types::DescribeContactResponse#post_pass_end_time #post_pass_end_time} => Time
1028
- # * {Types::DescribeContactResponse#pre_pass_start_time #pre_pass_start_time} => Time
1029
- # * {Types::DescribeContactResponse#region #region} => String
1030
1048
  # * {Types::DescribeContactResponse#satellite_arn #satellite_arn} => String
1031
1049
  # * {Types::DescribeContactResponse#start_time #start_time} => Time
1050
+ # * {Types::DescribeContactResponse#end_time #end_time} => Time
1051
+ # * {Types::DescribeContactResponse#pre_pass_start_time #pre_pass_start_time} => Time
1052
+ # * {Types::DescribeContactResponse#post_pass_end_time #post_pass_end_time} => Time
1053
+ # * {Types::DescribeContactResponse#ground_station #ground_station} => String
1054
+ # * {Types::DescribeContactResponse#contact_status #contact_status} => String
1055
+ # * {Types::DescribeContactResponse#error_message #error_message} => String
1056
+ # * {Types::DescribeContactResponse#maximum_elevation #maximum_elevation} => Types::Elevation
1032
1057
  # * {Types::DescribeContactResponse#tags #tags} => Hash&lt;String,String&gt;
1033
- # * {Types::DescribeContactResponse#visibility_end_time #visibility_end_time} => Time
1058
+ # * {Types::DescribeContactResponse#region #region} => String
1059
+ # * {Types::DescribeContactResponse#dataflow_list #dataflow_list} => Array&lt;Types::DataflowDetail&gt;
1034
1060
  # * {Types::DescribeContactResponse#visibility_start_time #visibility_start_time} => Time
1061
+ # * {Types::DescribeContactResponse#visibility_end_time #visibility_end_time} => Time
1062
+ # * {Types::DescribeContactResponse#tracking_overrides #tracking_overrides} => Types::TrackingOverrides
1063
+ # * {Types::DescribeContactResponse#ephemeris #ephemeris} => Types::EphemerisResponseData
1035
1064
  #
1036
1065
  # @example Request syntax with placeholder values
1037
1066
  #
@@ -1042,82 +1071,85 @@ module Aws::GroundStation
1042
1071
  # @example Response structure
1043
1072
  #
1044
1073
  # resp.contact_id #=> String
1045
- # resp.contact_status #=> String, one of "SCHEDULING", "FAILED_TO_SCHEDULE", "SCHEDULED", "CANCELLED", "AWS_CANCELLED", "PREPASS", "PASS", "POSTPASS", "COMPLETED", "FAILED", "AVAILABLE", "CANCELLING", "AWS_FAILED"
1046
- # resp.dataflow_list #=> Array
1047
- # resp.dataflow_list[0].destination.config_details.antenna_demod_decode_details.output_node #=> String
1048
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1049
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1050
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1074
+ # resp.mission_profile_arn #=> String
1075
+ # resp.satellite_arn #=> String
1076
+ # resp.start_time #=> Time
1077
+ # resp.end_time #=> Time
1078
+ # resp.pre_pass_start_time #=> Time
1079
+ # resp.post_pass_end_time #=> Time
1080
+ # resp.ground_station #=> String
1081
+ # resp.contact_status #=> String, one of "SCHEDULING", "FAILED_TO_SCHEDULE", "SCHEDULED", "CANCELLED", "AWS_CANCELLED", "PREPASS", "PASS", "POSTPASS", "COMPLETED", "FAILED", "AVAILABLE", "CANCELLING", "AWS_FAILED"
1082
+ # resp.error_message #=> String
1083
+ # resp.maximum_elevation.value #=> Float
1084
+ # resp.maximum_elevation.unit #=> String, one of "DEGREE_ANGLE", "RADIAN"
1085
+ # resp.tags #=> Hash
1086
+ # resp.tags["String"] #=> String
1087
+ # resp.region #=> String
1088
+ # resp.dataflow_list #=> Array
1089
+ # resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1090
+ # resp.dataflow_list[0].source.config_id #=> String
1091
+ # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids #=> Array
1092
+ # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
1093
+ # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids #=> Array
1094
+ # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
1095
+ # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.role_arn #=> String
1096
+ # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.name #=> String
1097
+ # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.name #=> String
1098
+ # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.port #=> Integer
1099
+ # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1100
+ # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.mtu #=> Integer
1101
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
1102
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
1103
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
1104
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1105
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
1106
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
1107
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1108
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1109
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1110
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1111
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1112
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons #=> Array
1113
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
1114
+ # resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
1115
+ # resp.dataflow_list[0].source.config_details.s3_recording_details.bucket_arn #=> String
1116
+ # resp.dataflow_list[0].source.config_details.s3_recording_details.key_template #=> String
1117
+ # resp.dataflow_list[0].source.dataflow_source_region #=> String
1118
+ # resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1119
+ # resp.dataflow_list[0].destination.config_id #=> String
1120
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids #=> Array
1121
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
1122
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids #=> Array
1123
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
1124
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.role_arn #=> String
1125
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.name #=> String
1126
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.name #=> String
1127
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.port #=> Integer
1128
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1129
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.mtu #=> Integer
1130
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
1051
1131
  # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
1052
1132
  # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
1053
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1133
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1054
1134
  # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
1055
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1056
1135
  # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
1057
- # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
1058
- # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.name #=> String
1059
- # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.port #=> Integer
1060
- # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.mtu #=> Integer
1061
- # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.name #=> String
1062
- # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1136
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1137
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1138
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1139
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1140
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1063
1141
  # resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons #=> Array
1064
1142
  # resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
1065
- # resp.dataflow_list[0].destination.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1066
- # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.role_arn #=> String
1067
- # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids #=> Array
1068
- # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
1069
- # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids #=> Array
1070
- # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
1143
+ # resp.dataflow_list[0].destination.config_details.antenna_demod_decode_details.output_node #=> String
1071
1144
  # resp.dataflow_list[0].destination.config_details.s3_recording_details.bucket_arn #=> String
1072
1145
  # resp.dataflow_list[0].destination.config_details.s3_recording_details.key_template #=> String
1073
- # resp.dataflow_list[0].destination.config_id #=> String
1074
- # resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1075
1146
  # resp.dataflow_list[0].destination.dataflow_destination_region #=> String
1076
1147
  # resp.dataflow_list[0].error_message #=> String
1077
- # resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
1078
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1079
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1080
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1081
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
1082
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
1083
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1084
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
1085
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1086
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
1087
- # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
1088
- # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.name #=> String
1089
- # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.port #=> Integer
1090
- # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.mtu #=> Integer
1091
- # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.name #=> String
1092
- # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1093
- # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons #=> Array
1094
- # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
1095
- # resp.dataflow_list[0].source.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1096
- # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.role_arn #=> String
1097
- # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids #=> Array
1098
- # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
1099
- # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids #=> Array
1100
- # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
1101
- # resp.dataflow_list[0].source.config_details.s3_recording_details.bucket_arn #=> String
1102
- # resp.dataflow_list[0].source.config_details.s3_recording_details.key_template #=> String
1103
- # resp.dataflow_list[0].source.config_id #=> String
1104
- # resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1105
- # resp.dataflow_list[0].source.dataflow_source_region #=> String
1106
- # resp.end_time #=> Time
1107
- # resp.error_message #=> String
1108
- # resp.ground_station #=> String
1109
- # resp.maximum_elevation.unit #=> String, one of "DEGREE_ANGLE", "RADIAN"
1110
- # resp.maximum_elevation.value #=> Float
1111
- # resp.mission_profile_arn #=> String
1112
- # resp.post_pass_end_time #=> Time
1113
- # resp.pre_pass_start_time #=> Time
1114
- # resp.region #=> String
1115
- # resp.satellite_arn #=> String
1116
- # resp.start_time #=> Time
1117
- # resp.tags #=> Hash
1118
- # resp.tags["String"] #=> String
1119
- # resp.visibility_end_time #=> Time
1120
1148
  # resp.visibility_start_time #=> Time
1149
+ # resp.visibility_end_time #=> Time
1150
+ # resp.tracking_overrides.program_track_settings.az_el.ephemeris_id #=> String
1151
+ # resp.ephemeris.ephemeris_id #=> String
1152
+ # resp.ephemeris.ephemeris_type #=> String, one of "TLE", "OEM", "AZ_EL", "SERVICE_MANAGED"
1121
1153
  #
1122
1154
  #
1123
1155
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1133,23 +1165,24 @@ module Aws::GroundStation
1133
1165
  req.send_request(options)
1134
1166
  end
1135
1167
 
1136
- # Describes an existing ephemeris.
1168
+ # Retrieve information about an existing ephemeris.
1137
1169
  #
1138
1170
  # @option params [required, String] :ephemeris_id
1139
1171
  # The AWS Ground Station ephemeris ID.
1140
1172
  #
1141
1173
  # @return [Types::DescribeEphemerisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1142
1174
  #
1143
- # * {Types::DescribeEphemerisResponse#creation_time #creation_time} => Time
1144
- # * {Types::DescribeEphemerisResponse#enabled #enabled} => Boolean
1145
1175
  # * {Types::DescribeEphemerisResponse#ephemeris_id #ephemeris_id} => String
1146
- # * {Types::DescribeEphemerisResponse#invalid_reason #invalid_reason} => String
1147
- # * {Types::DescribeEphemerisResponse#name #name} => String
1148
- # * {Types::DescribeEphemerisResponse#priority #priority} => Integer
1149
1176
  # * {Types::DescribeEphemerisResponse#satellite_id #satellite_id} => String
1150
1177
  # * {Types::DescribeEphemerisResponse#status #status} => String
1151
- # * {Types::DescribeEphemerisResponse#supplied_data #supplied_data} => Types::EphemerisTypeDescription
1178
+ # * {Types::DescribeEphemerisResponse#priority #priority} => Integer
1179
+ # * {Types::DescribeEphemerisResponse#creation_time #creation_time} => Time
1180
+ # * {Types::DescribeEphemerisResponse#enabled #enabled} => Boolean
1181
+ # * {Types::DescribeEphemerisResponse#name #name} => String
1152
1182
  # * {Types::DescribeEphemerisResponse#tags #tags} => Hash&lt;String,String&gt;
1183
+ # * {Types::DescribeEphemerisResponse#supplied_data #supplied_data} => Types::EphemerisTypeDescription
1184
+ # * {Types::DescribeEphemerisResponse#invalid_reason #invalid_reason} => String
1185
+ # * {Types::DescribeEphemerisResponse#error_reasons #error_reasons} => Array&lt;Types::EphemerisErrorReason&gt;
1153
1186
  #
1154
1187
  # @example Request syntax with placeholder values
1155
1188
  #
@@ -1159,24 +1192,31 @@ module Aws::GroundStation
1159
1192
  #
1160
1193
  # @example Response structure
1161
1194
  #
1162
- # resp.creation_time #=> Time
1163
- # resp.enabled #=> Boolean
1164
1195
  # resp.ephemeris_id #=> String
1165
- # resp.invalid_reason #=> String, one of "METADATA_INVALID", "TIME_RANGE_INVALID", "TRAJECTORY_INVALID", "KMS_KEY_INVALID", "VALIDATION_ERROR"
1166
- # resp.name #=> String
1167
- # resp.priority #=> Integer
1168
1196
  # resp.satellite_id #=> String
1169
1197
  # resp.status #=> String, one of "VALIDATING", "INVALID", "ERROR", "ENABLED", "DISABLED", "EXPIRED"
1170
- # resp.supplied_data.oem.ephemeris_data #=> String
1171
- # resp.supplied_data.oem.source_s3_object.bucket #=> String
1172
- # resp.supplied_data.oem.source_s3_object.key #=> String
1173
- # resp.supplied_data.oem.source_s3_object.version #=> String
1174
- # resp.supplied_data.tle.ephemeris_data #=> String
1198
+ # resp.priority #=> Integer
1199
+ # resp.creation_time #=> Time
1200
+ # resp.enabled #=> Boolean
1201
+ # resp.name #=> String
1202
+ # resp.tags #=> Hash
1203
+ # resp.tags["String"] #=> String
1175
1204
  # resp.supplied_data.tle.source_s3_object.bucket #=> String
1176
1205
  # resp.supplied_data.tle.source_s3_object.key #=> String
1177
1206
  # resp.supplied_data.tle.source_s3_object.version #=> String
1178
- # resp.tags #=> Hash
1179
- # resp.tags["String"] #=> String
1207
+ # resp.supplied_data.tle.ephemeris_data #=> String
1208
+ # resp.supplied_data.oem.source_s3_object.bucket #=> String
1209
+ # resp.supplied_data.oem.source_s3_object.key #=> String
1210
+ # resp.supplied_data.oem.source_s3_object.version #=> String
1211
+ # resp.supplied_data.oem.ephemeris_data #=> String
1212
+ # resp.supplied_data.az_el.source_s3_object.bucket #=> String
1213
+ # resp.supplied_data.az_el.source_s3_object.key #=> String
1214
+ # resp.supplied_data.az_el.source_s3_object.version #=> String
1215
+ # resp.supplied_data.az_el.ephemeris_data #=> String
1216
+ # resp.invalid_reason #=> String, one of "METADATA_INVALID", "TIME_RANGE_INVALID", "TRAJECTORY_INVALID", "KMS_KEY_INVALID", "VALIDATION_ERROR"
1217
+ # resp.error_reasons #=> Array
1218
+ # resp.error_reasons[0].error_code #=> String, one of "INTERNAL_ERROR", "MISMATCHED_SATCAT_ID", "OEM_VERSION_UNSUPPORTED", "ORIGINATOR_MISSING", "CREATION_DATE_MISSING", "OBJECT_NAME_MISSING", "OBJECT_ID_MISSING", "REF_FRAME_UNSUPPORTED", "REF_FRAME_EPOCH_UNSUPPORTED", "TIME_SYSTEM_UNSUPPORTED", "CENTER_BODY_UNSUPPORTED", "INTERPOLATION_MISSING", "INTERPOLATION_DEGREE_INVALID", "AZ_EL_SEGMENT_LIST_MISSING", "INSUFFICIENT_TIME_AZ_EL", "START_TIME_IN_FUTURE", "END_TIME_IN_PAST", "EXPIRATION_TIME_TOO_EARLY", "START_TIME_METADATA_TOO_EARLY", "STOP_TIME_METADATA_TOO_LATE", "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME", "AZ_EL_SEGMENT_TIMES_OVERLAP", "AZ_EL_SEGMENTS_OUT_OF_ORDER", "TIME_AZ_EL_ITEMS_OUT_OF_ORDER", "MEAN_MOTION_INVALID", "TIME_AZ_EL_AZ_RADIAN_RANGE_INVALID", "TIME_AZ_EL_EL_RADIAN_RANGE_INVALID", "TIME_AZ_EL_AZ_DEGREE_RANGE_INVALID", "TIME_AZ_EL_EL_DEGREE_RANGE_INVALID", "TIME_AZ_EL_ANGLE_UNITS_INVALID", "INSUFFICIENT_KMS_PERMISSIONS", "FILE_FORMAT_INVALID", "AZ_EL_SEGMENT_REFERENCE_EPOCH_INVALID", "AZ_EL_SEGMENT_START_TIME_INVALID", "AZ_EL_SEGMENT_END_TIME_INVALID", "AZ_EL_SEGMENT_VALID_TIME_RANGE_INVALID", "AZ_EL_SEGMENT_END_TIME_TOO_LATE", "AZ_EL_TOTAL_DURATION_EXCEEDED"
1219
+ # resp.error_reasons[0].error_message #=> String
1180
1220
  #
1181
1221
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemeris AWS API Documentation
1182
1222
  #
@@ -1187,11 +1227,12 @@ module Aws::GroundStation
1187
1227
  req.send_request(options)
1188
1228
  end
1189
1229
 
1190
- # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
1230
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't
1231
+ # be called directly.
1191
1232
  #
1192
1233
  # </note>
1193
1234
  #
1194
- # Gets the latest configuration information for a registered agent.
1235
+ # Gets the latest configuration information for a registered agent.
1195
1236
  #
1196
1237
  # @option params [required, String] :agent_id
1197
1238
  # UUID of agent to get configuration information for.
@@ -1233,11 +1274,11 @@ module Aws::GroundStation
1233
1274
  #
1234
1275
  # @return [Types::GetConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1235
1276
  #
1236
- # * {Types::GetConfigResponse#config_arn #config_arn} => String
1237
- # * {Types::GetConfigResponse#config_data #config_data} => Types::ConfigTypeData
1238
1277
  # * {Types::GetConfigResponse#config_id #config_id} => String
1239
- # * {Types::GetConfigResponse#config_type #config_type} => String
1278
+ # * {Types::GetConfigResponse#config_arn #config_arn} => String
1240
1279
  # * {Types::GetConfigResponse#name #name} => String
1280
+ # * {Types::GetConfigResponse#config_type #config_type} => String
1281
+ # * {Types::GetConfigResponse#config_data #config_data} => Types::ConfigTypeData
1241
1282
  # * {Types::GetConfigResponse#tags #tags} => Hash&lt;String,String&gt;
1242
1283
  #
1243
1284
  # @example Request syntax with placeholder values
@@ -1249,36 +1290,36 @@ module Aws::GroundStation
1249
1290
  #
1250
1291
  # @example Response structure
1251
1292
  #
1293
+ # resp.config_id #=> String
1252
1294
  # resp.config_arn #=> String
1253
- # resp.config_data.antenna_downlink_config.spectrum_config.bandwidth.units #=> String, one of "GHz", "MHz", "kHz"
1254
- # resp.config_data.antenna_downlink_config.spectrum_config.bandwidth.value #=> Float
1255
- # resp.config_data.antenna_downlink_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1295
+ # resp.name #=> String
1296
+ # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1256
1297
  # resp.config_data.antenna_downlink_config.spectrum_config.center_frequency.value #=> Float
1298
+ # resp.config_data.antenna_downlink_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1299
+ # resp.config_data.antenna_downlink_config.spectrum_config.bandwidth.value #=> Float
1300
+ # resp.config_data.antenna_downlink_config.spectrum_config.bandwidth.units #=> String, one of "GHz", "MHz", "kHz"
1257
1301
  # resp.config_data.antenna_downlink_config.spectrum_config.polarization #=> String, one of "RIGHT_HAND", "LEFT_HAND", "NONE"
1258
- # resp.config_data.antenna_downlink_demod_decode_config.decode_config.unvalidated_json #=> String
1259
- # resp.config_data.antenna_downlink_demod_decode_config.demodulation_config.unvalidated_json #=> String
1260
- # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.bandwidth.units #=> String, one of "GHz", "MHz", "kHz"
1261
- # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.bandwidth.value #=> Float
1262
- # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1302
+ # resp.config_data.tracking_config.autotrack #=> String, one of "REQUIRED", "PREFERRED", "REMOVED"
1303
+ # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
1304
+ # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
1263
1305
  # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.center_frequency.value #=> Float
1306
+ # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1307
+ # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.bandwidth.value #=> Float
1308
+ # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.bandwidth.units #=> String, one of "GHz", "MHz", "kHz"
1264
1309
  # resp.config_data.antenna_downlink_demod_decode_config.spectrum_config.polarization #=> String, one of "RIGHT_HAND", "LEFT_HAND", "NONE"
1265
- # resp.config_data.antenna_uplink_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1310
+ # resp.config_data.antenna_downlink_demod_decode_config.demodulation_config.unvalidated_json #=> String
1311
+ # resp.config_data.antenna_downlink_demod_decode_config.decode_config.unvalidated_json #=> String
1312
+ # resp.config_data.antenna_uplink_config.transmit_disabled #=> Boolean
1266
1313
  # resp.config_data.antenna_uplink_config.spectrum_config.center_frequency.value #=> Float
1314
+ # resp.config_data.antenna_uplink_config.spectrum_config.center_frequency.units #=> String, one of "GHz", "MHz", "kHz"
1267
1315
  # resp.config_data.antenna_uplink_config.spectrum_config.polarization #=> String, one of "RIGHT_HAND", "LEFT_HAND", "NONE"
1268
- # resp.config_data.antenna_uplink_config.target_eirp.units #=> String, one of "dBW"
1269
1316
  # resp.config_data.antenna_uplink_config.target_eirp.value #=> Float
1270
- # resp.config_data.antenna_uplink_config.transmit_disabled #=> Boolean
1271
- # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
1272
- # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
1317
+ # resp.config_data.antenna_uplink_config.target_eirp.units #=> String, one of "dBW"
1318
+ # resp.config_data.uplink_echo_config.enabled #=> Boolean
1319
+ # resp.config_data.uplink_echo_config.antenna_uplink_config_arn #=> String
1273
1320
  # resp.config_data.s3_recording_config.bucket_arn #=> String
1274
- # resp.config_data.s3_recording_config.prefix #=> String
1275
1321
  # resp.config_data.s3_recording_config.role_arn #=> String
1276
- # resp.config_data.tracking_config.autotrack #=> String, one of "REQUIRED", "PREFERRED", "REMOVED"
1277
- # resp.config_data.uplink_echo_config.antenna_uplink_config_arn #=> String
1278
- # resp.config_data.uplink_echo_config.enabled #=> Boolean
1279
- # resp.config_id #=> String
1280
- # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1281
- # resp.name #=> String
1322
+ # resp.config_data.s3_recording_config.prefix #=> String
1282
1323
  # resp.tags #=> Hash
1283
1324
  # resp.tags["String"] #=> String
1284
1325
  #
@@ -1298,12 +1339,12 @@ module Aws::GroundStation
1298
1339
  #
1299
1340
  # @return [Types::GetDataflowEndpointGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1300
1341
  #
1301
- # * {Types::GetDataflowEndpointGroupResponse#contact_post_pass_duration_seconds #contact_post_pass_duration_seconds} => Integer
1302
- # * {Types::GetDataflowEndpointGroupResponse#contact_pre_pass_duration_seconds #contact_pre_pass_duration_seconds} => Integer
1303
- # * {Types::GetDataflowEndpointGroupResponse#dataflow_endpoint_group_arn #dataflow_endpoint_group_arn} => String
1304
1342
  # * {Types::GetDataflowEndpointGroupResponse#dataflow_endpoint_group_id #dataflow_endpoint_group_id} => String
1343
+ # * {Types::GetDataflowEndpointGroupResponse#dataflow_endpoint_group_arn #dataflow_endpoint_group_arn} => String
1305
1344
  # * {Types::GetDataflowEndpointGroupResponse#endpoints_details #endpoints_details} => Array&lt;Types::EndpointDetails&gt;
1306
1345
  # * {Types::GetDataflowEndpointGroupResponse#tags #tags} => Hash&lt;String,String&gt;
1346
+ # * {Types::GetDataflowEndpointGroupResponse#contact_pre_pass_duration_seconds #contact_pre_pass_duration_seconds} => Integer
1347
+ # * {Types::GetDataflowEndpointGroupResponse#contact_post_pass_duration_seconds #contact_post_pass_duration_seconds} => Integer
1307
1348
  #
1308
1349
  # @example Request syntax with placeholder values
1309
1350
  #
@@ -1313,36 +1354,36 @@ module Aws::GroundStation
1313
1354
  #
1314
1355
  # @example Response structure
1315
1356
  #
1316
- # resp.contact_post_pass_duration_seconds #=> Integer
1317
- # resp.contact_pre_pass_duration_seconds #=> Integer
1318
- # resp.dataflow_endpoint_group_arn #=> String
1319
1357
  # resp.dataflow_endpoint_group_id #=> String
1358
+ # resp.dataflow_endpoint_group_arn #=> String
1320
1359
  # resp.endpoints_details #=> Array
1321
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1322
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1323
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1360
+ # resp.endpoints_details[0].security_details.subnet_ids #=> Array
1361
+ # resp.endpoints_details[0].security_details.subnet_ids[0] #=> String
1362
+ # resp.endpoints_details[0].security_details.security_group_ids #=> Array
1363
+ # resp.endpoints_details[0].security_details.security_group_ids[0] #=> String
1364
+ # resp.endpoints_details[0].security_details.role_arn #=> String
1365
+ # resp.endpoints_details[0].endpoint.name #=> String
1366
+ # resp.endpoints_details[0].endpoint.address.name #=> String
1367
+ # resp.endpoints_details[0].endpoint.address.port #=> Integer
1368
+ # resp.endpoints_details[0].endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1369
+ # resp.endpoints_details[0].endpoint.mtu #=> Integer
1370
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.name #=> String
1324
1371
  # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
1325
1372
  # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
1326
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1373
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1327
1374
  # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
1328
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1329
1375
  # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
1330
- # resp.endpoints_details[0].aws_ground_station_agent_endpoint.name #=> String
1331
- # resp.endpoints_details[0].endpoint.address.name #=> String
1332
- # resp.endpoints_details[0].endpoint.address.port #=> Integer
1333
- # resp.endpoints_details[0].endpoint.mtu #=> Integer
1334
- # resp.endpoints_details[0].endpoint.name #=> String
1335
- # resp.endpoints_details[0].endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1376
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1377
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1378
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1379
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1380
+ # resp.endpoints_details[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1336
1381
  # resp.endpoints_details[0].health_reasons #=> Array
1337
1382
  # resp.endpoints_details[0].health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
1338
- # resp.endpoints_details[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY"
1339
- # resp.endpoints_details[0].security_details.role_arn #=> String
1340
- # resp.endpoints_details[0].security_details.security_group_ids #=> Array
1341
- # resp.endpoints_details[0].security_details.security_group_ids[0] #=> String
1342
- # resp.endpoints_details[0].security_details.subnet_ids #=> Array
1343
- # resp.endpoints_details[0].security_details.subnet_ids[0] #=> String
1344
1383
  # resp.tags #=> Hash
1345
1384
  # resp.tags["String"] #=> String
1385
+ # resp.contact_pre_pass_duration_seconds #=> Integer
1386
+ # resp.contact_post_pass_duration_seconds #=> Integer
1346
1387
  #
1347
1388
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetDataflowEndpointGroup AWS API Documentation
1348
1389
  #
@@ -1363,11 +1404,11 @@ module Aws::GroundStation
1363
1404
  #
1364
1405
  # @return [Types::GetMinuteUsageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1365
1406
  #
1366
- # * {Types::GetMinuteUsageResponse#estimated_minutes_remaining #estimated_minutes_remaining} => Integer
1367
1407
  # * {Types::GetMinuteUsageResponse#is_reserved_minutes_customer #is_reserved_minutes_customer} => Boolean
1368
1408
  # * {Types::GetMinuteUsageResponse#total_reserved_minute_allocation #total_reserved_minute_allocation} => Integer
1369
- # * {Types::GetMinuteUsageResponse#total_scheduled_minutes #total_scheduled_minutes} => Integer
1370
1409
  # * {Types::GetMinuteUsageResponse#upcoming_minutes_scheduled #upcoming_minutes_scheduled} => Integer
1410
+ # * {Types::GetMinuteUsageResponse#total_scheduled_minutes #total_scheduled_minutes} => Integer
1411
+ # * {Types::GetMinuteUsageResponse#estimated_minutes_remaining #estimated_minutes_remaining} => Integer
1371
1412
  #
1372
1413
  # @example Request syntax with placeholder values
1373
1414
  #
@@ -1378,11 +1419,11 @@ module Aws::GroundStation
1378
1419
  #
1379
1420
  # @example Response structure
1380
1421
  #
1381
- # resp.estimated_minutes_remaining #=> Integer
1382
1422
  # resp.is_reserved_minutes_customer #=> Boolean
1383
1423
  # resp.total_reserved_minute_allocation #=> Integer
1384
- # resp.total_scheduled_minutes #=> Integer
1385
1424
  # resp.upcoming_minutes_scheduled #=> Integer
1425
+ # resp.total_scheduled_minutes #=> Integer
1426
+ # resp.estimated_minutes_remaining #=> Integer
1386
1427
  #
1387
1428
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMinuteUsage AWS API Documentation
1388
1429
  #
@@ -1400,18 +1441,18 @@ module Aws::GroundStation
1400
1441
  #
1401
1442
  # @return [Types::GetMissionProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1402
1443
  #
1403
- # * {Types::GetMissionProfileResponse#contact_post_pass_duration_seconds #contact_post_pass_duration_seconds} => Integer
1404
- # * {Types::GetMissionProfileResponse#contact_pre_pass_duration_seconds #contact_pre_pass_duration_seconds} => Integer
1405
- # * {Types::GetMissionProfileResponse#dataflow_edges #dataflow_edges} => Array&lt;Array&lt;String&gt;&gt;
1406
- # * {Types::GetMissionProfileResponse#minimum_viable_contact_duration_seconds #minimum_viable_contact_duration_seconds} => Integer
1407
- # * {Types::GetMissionProfileResponse#mission_profile_arn #mission_profile_arn} => String
1408
1444
  # * {Types::GetMissionProfileResponse#mission_profile_id #mission_profile_id} => String
1445
+ # * {Types::GetMissionProfileResponse#mission_profile_arn #mission_profile_arn} => String
1409
1446
  # * {Types::GetMissionProfileResponse#name #name} => String
1410
1447
  # * {Types::GetMissionProfileResponse#region #region} => String
1448
+ # * {Types::GetMissionProfileResponse#contact_pre_pass_duration_seconds #contact_pre_pass_duration_seconds} => Integer
1449
+ # * {Types::GetMissionProfileResponse#contact_post_pass_duration_seconds #contact_post_pass_duration_seconds} => Integer
1450
+ # * {Types::GetMissionProfileResponse#minimum_viable_contact_duration_seconds #minimum_viable_contact_duration_seconds} => Integer
1451
+ # * {Types::GetMissionProfileResponse#dataflow_edges #dataflow_edges} => Array&lt;Array&lt;String&gt;&gt;
1452
+ # * {Types::GetMissionProfileResponse#tracking_config_arn #tracking_config_arn} => String
1453
+ # * {Types::GetMissionProfileResponse#tags #tags} => Hash&lt;String,String&gt;
1411
1454
  # * {Types::GetMissionProfileResponse#streams_kms_key #streams_kms_key} => Types::KmsKey
1412
1455
  # * {Types::GetMissionProfileResponse#streams_kms_role #streams_kms_role} => String
1413
- # * {Types::GetMissionProfileResponse#tags #tags} => Hash&lt;String,String&gt;
1414
- # * {Types::GetMissionProfileResponse#tracking_config_arn #tracking_config_arn} => String
1415
1456
  #
1416
1457
  # @example Request syntax with placeholder values
1417
1458
  #
@@ -1421,23 +1462,23 @@ module Aws::GroundStation
1421
1462
  #
1422
1463
  # @example Response structure
1423
1464
  #
1424
- # resp.contact_post_pass_duration_seconds #=> Integer
1465
+ # resp.mission_profile_id #=> String
1466
+ # resp.mission_profile_arn #=> String
1467
+ # resp.name #=> String
1468
+ # resp.region #=> String
1425
1469
  # resp.contact_pre_pass_duration_seconds #=> Integer
1470
+ # resp.contact_post_pass_duration_seconds #=> Integer
1471
+ # resp.minimum_viable_contact_duration_seconds #=> Integer
1426
1472
  # resp.dataflow_edges #=> Array
1427
1473
  # resp.dataflow_edges[0] #=> Array
1428
1474
  # resp.dataflow_edges[0][0] #=> String
1429
- # resp.minimum_viable_contact_duration_seconds #=> Integer
1430
- # resp.mission_profile_arn #=> String
1431
- # resp.mission_profile_id #=> String
1432
- # resp.name #=> String
1433
- # resp.region #=> String
1475
+ # resp.tracking_config_arn #=> String
1476
+ # resp.tags #=> Hash
1477
+ # resp.tags["String"] #=> String
1478
+ # resp.streams_kms_key.kms_key_arn #=> String
1434
1479
  # resp.streams_kms_key.kms_alias_arn #=> String
1435
1480
  # resp.streams_kms_key.kms_alias_name #=> String
1436
- # resp.streams_kms_key.kms_key_arn #=> String
1437
1481
  # resp.streams_kms_role #=> String
1438
- # resp.tags #=> Hash
1439
- # resp.tags["String"] #=> String
1440
- # resp.tracking_config_arn #=> String
1441
1482
  #
1442
1483
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMissionProfile AWS API Documentation
1443
1484
  #
@@ -1455,11 +1496,11 @@ module Aws::GroundStation
1455
1496
  #
1456
1497
  # @return [Types::GetSatelliteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1457
1498
  #
1458
- # * {Types::GetSatelliteResponse#current_ephemeris #current_ephemeris} => Types::EphemerisMetaData
1459
- # * {Types::GetSatelliteResponse#ground_stations #ground_stations} => Array&lt;String&gt;
1460
- # * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
1461
- # * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
1462
1499
  # * {Types::GetSatelliteResponse#satellite_id #satellite_id} => String
1500
+ # * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
1501
+ # * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
1502
+ # * {Types::GetSatelliteResponse#ground_stations #ground_stations} => Array&lt;String&gt;
1503
+ # * {Types::GetSatelliteResponse#current_ephemeris #current_ephemeris} => Types::EphemerisMetaData
1463
1504
  #
1464
1505
  # @example Request syntax with placeholder values
1465
1506
  #
@@ -1469,15 +1510,15 @@ module Aws::GroundStation
1469
1510
  #
1470
1511
  # @example Response structure
1471
1512
  #
1513
+ # resp.satellite_id #=> String
1514
+ # resp.satellite_arn #=> String
1515
+ # resp.norad_satellite_id #=> Integer
1516
+ # resp.ground_stations #=> Array
1517
+ # resp.ground_stations[0] #=> String
1518
+ # resp.current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1472
1519
  # resp.current_ephemeris.ephemeris_id #=> String
1473
1520
  # resp.current_ephemeris.epoch #=> Time
1474
1521
  # resp.current_ephemeris.name #=> String
1475
- # resp.current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1476
- # resp.ground_stations #=> Array
1477
- # resp.ground_stations[0] #=> String
1478
- # resp.norad_satellite_id #=> Integer
1479
- # resp.satellite_arn #=> String
1480
- # resp.satellite_id #=> String
1481
1522
  #
1482
1523
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatellite AWS API Documentation
1483
1524
  #
@@ -1499,8 +1540,8 @@ module Aws::GroundStation
1499
1540
  #
1500
1541
  # @return [Types::ListConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1501
1542
  #
1502
- # * {Types::ListConfigsResponse#config_list #config_list} => Array&lt;Types::ConfigListItem&gt;
1503
1543
  # * {Types::ListConfigsResponse#next_token #next_token} => String
1544
+ # * {Types::ListConfigsResponse#config_list #config_list} => Array&lt;Types::ConfigListItem&gt;
1504
1545
  #
1505
1546
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1506
1547
  #
@@ -1513,12 +1554,12 @@ module Aws::GroundStation
1513
1554
  #
1514
1555
  # @example Response structure
1515
1556
  #
1557
+ # resp.next_token #=> String
1516
1558
  # resp.config_list #=> Array
1517
- # resp.config_list[0].config_arn #=> String
1518
1559
  # resp.config_list[0].config_id #=> String
1519
1560
  # resp.config_list[0].config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
1561
+ # resp.config_list[0].config_arn #=> String
1520
1562
  # resp.config_list[0].name #=> String
1521
- # resp.next_token #=> String
1522
1563
  #
1523
1564
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListConfigs AWS API Documentation
1524
1565
  #
@@ -1534,72 +1575,82 @@ module Aws::GroundStation
1534
1575
  # If `statusList` contains AVAILABLE, the request must include
1535
1576
  # `groundStation`, `missionprofileArn`, and `satelliteArn`.
1536
1577
  #
1537
- # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1538
- # End time of a contact in UTC.
1539
- #
1540
- # @option params [String] :ground_station
1541
- # Name of a ground station.
1542
- #
1543
1578
  # @option params [Integer] :max_results
1544
1579
  # Maximum number of contacts returned.
1545
1580
  #
1546
- # @option params [String] :mission_profile_arn
1547
- # ARN of a mission profile.
1548
- #
1549
1581
  # @option params [String] :next_token
1550
1582
  # Next token returned in the request of a previous `ListContacts` call.
1551
1583
  # Used to get the next page of results.
1552
1584
  #
1553
- # @option params [String] :satellite_arn
1554
- # ARN of a satellite.
1585
+ # @option params [required, Array<String>] :status_list
1586
+ # Status of a contact reservation.
1555
1587
  #
1556
1588
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1557
1589
  # Start time of a contact in UTC.
1558
1590
  #
1559
- # @option params [required, Array<String>] :status_list
1560
- # Status of a contact reservation.
1591
+ # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1592
+ # End time of a contact in UTC.
1593
+ #
1594
+ # @option params [String] :ground_station
1595
+ # Name of a ground station.
1596
+ #
1597
+ # @option params [String] :satellite_arn
1598
+ # ARN of a satellite.
1599
+ #
1600
+ # @option params [String] :mission_profile_arn
1601
+ # ARN of a mission profile.
1602
+ #
1603
+ # @option params [Types::EphemerisFilter] :ephemeris
1604
+ # Filter for selecting contacts that use a specific ephemeris".
1561
1605
  #
1562
1606
  # @return [Types::ListContactsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1563
1607
  #
1564
- # * {Types::ListContactsResponse#contact_list #contact_list} => Array&lt;Types::ContactData&gt;
1565
1608
  # * {Types::ListContactsResponse#next_token #next_token} => String
1609
+ # * {Types::ListContactsResponse#contact_list #contact_list} => Array&lt;Types::ContactData&gt;
1566
1610
  #
1567
1611
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1568
1612
  #
1569
1613
  # @example Request syntax with placeholder values
1570
1614
  #
1571
1615
  # resp = client.list_contacts({
1572
- # end_time: Time.now, # required
1573
- # ground_station: "GroundStationName",
1574
1616
  # max_results: 1,
1575
- # mission_profile_arn: "MissionProfileArn",
1576
1617
  # next_token: "PaginationToken",
1577
- # satellite_arn: "satelliteArn",
1578
- # start_time: Time.now, # required
1579
1618
  # status_list: ["SCHEDULING"], # required, accepts SCHEDULING, FAILED_TO_SCHEDULE, SCHEDULED, CANCELLED, AWS_CANCELLED, PREPASS, PASS, POSTPASS, COMPLETED, FAILED, AVAILABLE, CANCELLING, AWS_FAILED
1619
+ # start_time: Time.now, # required
1620
+ # end_time: Time.now, # required
1621
+ # ground_station: "GroundStationName",
1622
+ # satellite_arn: "satelliteArn",
1623
+ # mission_profile_arn: "MissionProfileArn",
1624
+ # ephemeris: {
1625
+ # az_el: {
1626
+ # id: "Uuid", # required
1627
+ # },
1628
+ # },
1580
1629
  # })
1581
1630
  #
1582
1631
  # @example Response structure
1583
1632
  #
1633
+ # resp.next_token #=> String
1584
1634
  # resp.contact_list #=> Array
1585
1635
  # resp.contact_list[0].contact_id #=> String
1586
- # resp.contact_list[0].contact_status #=> String, one of "SCHEDULING", "FAILED_TO_SCHEDULE", "SCHEDULED", "CANCELLED", "AWS_CANCELLED", "PREPASS", "PASS", "POSTPASS", "COMPLETED", "FAILED", "AVAILABLE", "CANCELLING", "AWS_FAILED"
1636
+ # resp.contact_list[0].mission_profile_arn #=> String
1637
+ # resp.contact_list[0].satellite_arn #=> String
1638
+ # resp.contact_list[0].start_time #=> Time
1587
1639
  # resp.contact_list[0].end_time #=> Time
1588
- # resp.contact_list[0].error_message #=> String
1640
+ # resp.contact_list[0].pre_pass_start_time #=> Time
1641
+ # resp.contact_list[0].post_pass_end_time #=> Time
1589
1642
  # resp.contact_list[0].ground_station #=> String
1590
- # resp.contact_list[0].maximum_elevation.unit #=> String, one of "DEGREE_ANGLE", "RADIAN"
1643
+ # resp.contact_list[0].contact_status #=> String, one of "SCHEDULING", "FAILED_TO_SCHEDULE", "SCHEDULED", "CANCELLED", "AWS_CANCELLED", "PREPASS", "PASS", "POSTPASS", "COMPLETED", "FAILED", "AVAILABLE", "CANCELLING", "AWS_FAILED"
1644
+ # resp.contact_list[0].error_message #=> String
1591
1645
  # resp.contact_list[0].maximum_elevation.value #=> Float
1592
- # resp.contact_list[0].mission_profile_arn #=> String
1593
- # resp.contact_list[0].post_pass_end_time #=> Time
1594
- # resp.contact_list[0].pre_pass_start_time #=> Time
1646
+ # resp.contact_list[0].maximum_elevation.unit #=> String, one of "DEGREE_ANGLE", "RADIAN"
1595
1647
  # resp.contact_list[0].region #=> String
1596
- # resp.contact_list[0].satellite_arn #=> String
1597
- # resp.contact_list[0].start_time #=> Time
1598
1648
  # resp.contact_list[0].tags #=> Hash
1599
1649
  # resp.contact_list[0].tags["String"] #=> String
1600
- # resp.contact_list[0].visibility_end_time #=> Time
1601
1650
  # resp.contact_list[0].visibility_start_time #=> Time
1602
- # resp.next_token #=> String
1651
+ # resp.contact_list[0].visibility_end_time #=> Time
1652
+ # resp.contact_list[0].ephemeris.ephemeris_id #=> String
1653
+ # resp.contact_list[0].ephemeris.ephemeris_type #=> String, one of "TLE", "OEM", "AZ_EL", "SERVICE_MANAGED"
1603
1654
  #
1604
1655
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContacts AWS API Documentation
1605
1656
  #
@@ -1622,8 +1673,8 @@ module Aws::GroundStation
1622
1673
  #
1623
1674
  # @return [Types::ListDataflowEndpointGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1624
1675
  #
1625
- # * {Types::ListDataflowEndpointGroupsResponse#dataflow_endpoint_group_list #dataflow_endpoint_group_list} => Array&lt;Types::DataflowEndpointListItem&gt;
1626
1676
  # * {Types::ListDataflowEndpointGroupsResponse#next_token #next_token} => String
1677
+ # * {Types::ListDataflowEndpointGroupsResponse#dataflow_endpoint_group_list #dataflow_endpoint_group_list} => Array&lt;Types::DataflowEndpointListItem&gt;
1627
1678
  #
1628
1679
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1629
1680
  #
@@ -1636,10 +1687,10 @@ module Aws::GroundStation
1636
1687
  #
1637
1688
  # @example Response structure
1638
1689
  #
1690
+ # resp.next_token #=> String
1639
1691
  # resp.dataflow_endpoint_group_list #=> Array
1640
- # resp.dataflow_endpoint_group_list[0].dataflow_endpoint_group_arn #=> String
1641
1692
  # resp.dataflow_endpoint_group_list[0].dataflow_endpoint_group_id #=> String
1642
- # resp.next_token #=> String
1693
+ # resp.dataflow_endpoint_group_list[0].dataflow_endpoint_group_arn #=> String
1643
1694
  #
1644
1695
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListDataflowEndpointGroups AWS API Documentation
1645
1696
  #
@@ -1650,12 +1701,25 @@ module Aws::GroundStation
1650
1701
  req.send_request(options)
1651
1702
  end
1652
1703
 
1653
- # List existing ephemerides.
1704
+ # List your existing ephemerides.
1705
+ #
1706
+ # @option params [String] :satellite_id
1707
+ # The AWS Ground Station satellite ID to list ephemeris for.
1708
+ #
1709
+ # @option params [String] :ephemeris_type
1710
+ # Filter ephemerides by type. If not specified, all ephemeris types will
1711
+ # be returned.
1712
+ #
1713
+ # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1714
+ # The start time for the list operation in UTC. Returns ephemerides with
1715
+ # expiration times within your specified time range.
1654
1716
  #
1655
1717
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1656
- # The end time to list in UTC. The operation will return an ephemeris if
1657
- # its expiration time is within the time range defined by the
1658
- # `startTime` and `endTime`.
1718
+ # The end time for the list operation in UTC. Returns ephemerides with
1719
+ # expiration times within your specified time range.
1720
+ #
1721
+ # @option params [Array<String>] :status_list
1722
+ # The list of ephemeris status to return.
1659
1723
  #
1660
1724
  # @option params [Integer] :max_results
1661
1725
  # Maximum number of ephemerides to return.
@@ -1663,48 +1727,39 @@ module Aws::GroundStation
1663
1727
  # @option params [String] :next_token
1664
1728
  # Pagination token.
1665
1729
  #
1666
- # @option params [required, String] :satellite_id
1667
- # The AWS Ground Station satellite ID to list ephemeris for.
1668
- #
1669
- # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1670
- # The start time to list in UTC. The operation will return an ephemeris
1671
- # if its expiration time is within the time range defined by the
1672
- # `startTime` and `endTime`.
1673
- #
1674
- # @option params [Array<String>] :status_list
1675
- # The list of ephemeris status to return.
1676
- #
1677
1730
  # @return [Types::ListEphemeridesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1678
1731
  #
1679
- # * {Types::ListEphemeridesResponse#ephemerides #ephemerides} => Array&lt;Types::EphemerisItem&gt;
1680
1732
  # * {Types::ListEphemeridesResponse#next_token #next_token} => String
1733
+ # * {Types::ListEphemeridesResponse#ephemerides #ephemerides} => Array&lt;Types::EphemerisItem&gt;
1681
1734
  #
1682
1735
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1683
1736
  #
1684
1737
  # @example Request syntax with placeholder values
1685
1738
  #
1686
1739
  # resp = client.list_ephemerides({
1740
+ # satellite_id: "Uuid",
1741
+ # ephemeris_type: "TLE", # accepts TLE, OEM, AZ_EL, SERVICE_MANAGED
1742
+ # start_time: Time.now, # required
1687
1743
  # end_time: Time.now, # required
1744
+ # status_list: ["VALIDATING"], # accepts VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED
1688
1745
  # max_results: 1,
1689
1746
  # next_token: "PaginationToken",
1690
- # satellite_id: "Uuid", # required
1691
- # start_time: Time.now, # required
1692
- # status_list: ["VALIDATING"], # accepts VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED
1693
1747
  # })
1694
1748
  #
1695
1749
  # @example Response structure
1696
1750
  #
1751
+ # resp.next_token #=> String
1697
1752
  # resp.ephemerides #=> Array
1698
- # resp.ephemerides[0].creation_time #=> Time
1699
- # resp.ephemerides[0].enabled #=> Boolean
1700
1753
  # resp.ephemerides[0].ephemeris_id #=> String
1701
- # resp.ephemerides[0].name #=> String
1754
+ # resp.ephemerides[0].ephemeris_type #=> String, one of "TLE", "OEM", "AZ_EL", "SERVICE_MANAGED"
1755
+ # resp.ephemerides[0].status #=> String, one of "VALIDATING", "INVALID", "ERROR", "ENABLED", "DISABLED", "EXPIRED"
1702
1756
  # resp.ephemerides[0].priority #=> Integer
1757
+ # resp.ephemerides[0].enabled #=> Boolean
1758
+ # resp.ephemerides[0].creation_time #=> Time
1759
+ # resp.ephemerides[0].name #=> String
1703
1760
  # resp.ephemerides[0].source_s3_object.bucket #=> String
1704
1761
  # resp.ephemerides[0].source_s3_object.key #=> String
1705
1762
  # resp.ephemerides[0].source_s3_object.version #=> String
1706
- # resp.ephemerides[0].status #=> String, one of "VALIDATING", "INVALID", "ERROR", "ENABLED", "DISABLED", "EXPIRED"
1707
- # resp.next_token #=> String
1708
1763
  #
1709
1764
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemerides AWS API Documentation
1710
1765
  #
@@ -1717,6 +1772,9 @@ module Aws::GroundStation
1717
1772
 
1718
1773
  # Returns a list of ground stations.
1719
1774
  #
1775
+ # @option params [String] :satellite_id
1776
+ # Satellite ID to retrieve on-boarded ground stations.
1777
+ #
1720
1778
  # @option params [Integer] :max_results
1721
1779
  # Maximum number of ground stations returned.
1722
1780
  #
@@ -1724,31 +1782,28 @@ module Aws::GroundStation
1724
1782
  # Next token that can be supplied in the next call to get the next page
1725
1783
  # of ground stations.
1726
1784
  #
1727
- # @option params [String] :satellite_id
1728
- # Satellite ID to retrieve on-boarded ground stations.
1729
- #
1730
1785
  # @return [Types::ListGroundStationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1731
1786
  #
1732
- # * {Types::ListGroundStationsResponse#ground_station_list #ground_station_list} => Array&lt;Types::GroundStationData&gt;
1733
1787
  # * {Types::ListGroundStationsResponse#next_token #next_token} => String
1788
+ # * {Types::ListGroundStationsResponse#ground_station_list #ground_station_list} => Array&lt;Types::GroundStationData&gt;
1734
1789
  #
1735
1790
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1736
1791
  #
1737
1792
  # @example Request syntax with placeholder values
1738
1793
  #
1739
1794
  # resp = client.list_ground_stations({
1795
+ # satellite_id: "Uuid",
1740
1796
  # max_results: 1,
1741
1797
  # next_token: "PaginationToken",
1742
- # satellite_id: "Uuid",
1743
1798
  # })
1744
1799
  #
1745
1800
  # @example Response structure
1746
1801
  #
1802
+ # resp.next_token #=> String
1747
1803
  # resp.ground_station_list #=> Array
1748
1804
  # resp.ground_station_list[0].ground_station_id #=> String
1749
1805
  # resp.ground_station_list[0].ground_station_name #=> String
1750
1806
  # resp.ground_station_list[0].region #=> String
1751
- # resp.next_token #=> String
1752
1807
  #
1753
1808
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStations AWS API Documentation
1754
1809
  #
@@ -1770,8 +1825,8 @@ module Aws::GroundStation
1770
1825
  #
1771
1826
  # @return [Types::ListMissionProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1772
1827
  #
1773
- # * {Types::ListMissionProfilesResponse#mission_profile_list #mission_profile_list} => Array&lt;Types::MissionProfileListItem&gt;
1774
1828
  # * {Types::ListMissionProfilesResponse#next_token #next_token} => String
1829
+ # * {Types::ListMissionProfilesResponse#mission_profile_list #mission_profile_list} => Array&lt;Types::MissionProfileListItem&gt;
1775
1830
  #
1776
1831
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1777
1832
  #
@@ -1784,12 +1839,12 @@ module Aws::GroundStation
1784
1839
  #
1785
1840
  # @example Response structure
1786
1841
  #
1842
+ # resp.next_token #=> String
1787
1843
  # resp.mission_profile_list #=> Array
1788
- # resp.mission_profile_list[0].mission_profile_arn #=> String
1789
1844
  # resp.mission_profile_list[0].mission_profile_id #=> String
1790
- # resp.mission_profile_list[0].name #=> String
1845
+ # resp.mission_profile_list[0].mission_profile_arn #=> String
1791
1846
  # resp.mission_profile_list[0].region #=> String
1792
- # resp.next_token #=> String
1847
+ # resp.mission_profile_list[0].name #=> String
1793
1848
  #
1794
1849
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListMissionProfiles AWS API Documentation
1795
1850
  #
@@ -1827,15 +1882,15 @@ module Aws::GroundStation
1827
1882
  #
1828
1883
  # resp.next_token #=> String
1829
1884
  # resp.satellites #=> Array
1885
+ # resp.satellites[0].satellite_id #=> String
1886
+ # resp.satellites[0].satellite_arn #=> String
1887
+ # resp.satellites[0].norad_satellite_id #=> Integer
1888
+ # resp.satellites[0].ground_stations #=> Array
1889
+ # resp.satellites[0].ground_stations[0] #=> String
1890
+ # resp.satellites[0].current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1830
1891
  # resp.satellites[0].current_ephemeris.ephemeris_id #=> String
1831
1892
  # resp.satellites[0].current_ephemeris.epoch #=> Time
1832
1893
  # resp.satellites[0].current_ephemeris.name #=> String
1833
- # resp.satellites[0].current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1834
- # resp.satellites[0].ground_stations #=> Array
1835
- # resp.satellites[0].ground_stations[0] #=> String
1836
- # resp.satellites[0].norad_satellite_id #=> Integer
1837
- # resp.satellites[0].satellite_arn #=> String
1838
- # resp.satellites[0].satellite_id #=> String
1839
1894
  #
1840
1895
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListSatellites AWS API Documentation
1841
1896
  #
@@ -1875,18 +1930,19 @@ module Aws::GroundStation
1875
1930
  req.send_request(options)
1876
1931
  end
1877
1932
 
1878
- # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
1933
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't
1934
+ # be called directly.
1879
1935
  #
1880
1936
  # </note>
1881
1937
  #
1882
- # Registers a new agent with AWS Ground Station.
1883
- #
1884
- # @option params [required, Types::AgentDetails] :agent_details
1885
- # Detailed information about the agent being registered.
1938
+ # Registers a new agent with AWS Ground Station.
1886
1939
  #
1887
1940
  # @option params [required, Types::DiscoveryData] :discovery_data
1888
1941
  # Data for associating an agent with the capabilities it is managing.
1889
1942
  #
1943
+ # @option params [required, Types::AgentDetails] :agent_details
1944
+ # Detailed information about the agent being registered.
1945
+ #
1890
1946
  # @option params [Hash<String,String>] :tags
1891
1947
  # Tags assigned to an `Agent`.
1892
1948
  #
@@ -1897,23 +1953,23 @@ module Aws::GroundStation
1897
1953
  # @example Request syntax with placeholder values
1898
1954
  #
1899
1955
  # resp = client.register_agent({
1956
+ # discovery_data: { # required
1957
+ # public_ip_addresses: ["IpV4Address"], # required
1958
+ # private_ip_addresses: ["IpV4Address"], # required
1959
+ # capability_arns: ["CapabilityArn"], # required
1960
+ # },
1900
1961
  # agent_details: { # required
1901
- # agent_cpu_cores: [1],
1902
1962
  # agent_version: "VersionString", # required
1963
+ # instance_id: "InstanceId", # required
1964
+ # instance_type: "InstanceType", # required
1965
+ # reserved_cpu_cores: [1],
1966
+ # agent_cpu_cores: [1],
1903
1967
  # component_versions: [ # required
1904
1968
  # {
1905
1969
  # component_type: "ComponentTypeString", # required
1906
1970
  # versions: ["VersionString"], # required
1907
1971
  # },
1908
1972
  # ],
1909
- # instance_id: "InstanceId", # required
1910
- # instance_type: "InstanceType", # required
1911
- # reserved_cpu_cores: [1],
1912
- # },
1913
- # discovery_data: { # required
1914
- # capability_arns: ["CapabilityArn"], # required
1915
- # private_ip_addresses: ["IpV4Address"], # required
1916
- # public_ip_addresses: ["IpV4Address"], # required
1917
1973
  # },
1918
1974
  # tags: {
1919
1975
  # "String" => "String",
@@ -1935,24 +1991,27 @@ module Aws::GroundStation
1935
1991
 
1936
1992
  # Reserves a contact using specified parameters.
1937
1993
  #
1938
- # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1939
- # End time of a contact in UTC.
1940
- #
1941
- # @option params [required, String] :ground_station
1942
- # Name of a ground station.
1943
- #
1944
1994
  # @option params [required, String] :mission_profile_arn
1945
1995
  # ARN of a mission profile.
1946
1996
  #
1947
- # @option params [required, String] :satellite_arn
1997
+ # @option params [String] :satellite_arn
1948
1998
  # ARN of a satellite
1949
1999
  #
1950
2000
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1951
2001
  # Start time of a contact in UTC.
1952
2002
  #
2003
+ # @option params [required, Time,DateTime,Date,Integer,String] :end_time
2004
+ # End time of a contact in UTC.
2005
+ #
2006
+ # @option params [required, String] :ground_station
2007
+ # Name of a ground station.
2008
+ #
1953
2009
  # @option params [Hash<String,String>] :tags
1954
2010
  # Tags assigned to a contact.
1955
2011
  #
2012
+ # @option params [Types::TrackingOverrides] :tracking_overrides
2013
+ # Tracking configuration overrides for the contact.
2014
+ #
1956
2015
  # @return [Types::ContactIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1957
2016
  #
1958
2017
  # * {Types::ContactIdResponse#contact_id #contact_id} => String
@@ -1960,14 +2019,21 @@ module Aws::GroundStation
1960
2019
  # @example Request syntax with placeholder values
1961
2020
  #
1962
2021
  # resp = client.reserve_contact({
1963
- # end_time: Time.now, # required
1964
- # ground_station: "GroundStationName", # required
1965
2022
  # mission_profile_arn: "MissionProfileArn", # required
1966
- # satellite_arn: "satelliteArn", # required
2023
+ # satellite_arn: "satelliteArn",
1967
2024
  # start_time: Time.now, # required
2025
+ # end_time: Time.now, # required
2026
+ # ground_station: "GroundStationName", # required
1968
2027
  # tags: {
1969
2028
  # "String" => "String",
1970
2029
  # },
2030
+ # tracking_overrides: {
2031
+ # program_track_settings: { # required
2032
+ # az_el: {
2033
+ # ephemeris_id: "Uuid", # required
2034
+ # },
2035
+ # },
2036
+ # },
1971
2037
  # })
1972
2038
  #
1973
2039
  # @example Response structure
@@ -2037,24 +2103,25 @@ module Aws::GroundStation
2037
2103
  req.send_request(options)
2038
2104
  end
2039
2105
 
2040
- # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
2106
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't
2107
+ # be called directly.
2041
2108
  #
2042
2109
  # </note>
2043
2110
  #
2044
- # Update the status of the agent.
2111
+ # Update the status of the agent.
2045
2112
  #
2046
2113
  # @option params [required, String] :agent_id
2047
2114
  # UUID of agent to update.
2048
2115
  #
2116
+ # @option params [required, String] :task_id
2117
+ # GUID of agent task.
2118
+ #
2049
2119
  # @option params [required, Types::AggregateStatus] :aggregate_status
2050
2120
  # Aggregate status for agent.
2051
2121
  #
2052
2122
  # @option params [required, Array<Types::ComponentStatusData>] :component_statuses
2053
2123
  # List of component statuses for agent.
2054
2124
  #
2055
- # @option params [required, String] :task_id
2056
- # GUID of agent task.
2057
- #
2058
2125
  # @return [Types::UpdateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2059
2126
  #
2060
2127
  # * {Types::UpdateAgentStatusResponse#agent_id #agent_id} => String
@@ -2063,24 +2130,24 @@ module Aws::GroundStation
2063
2130
  #
2064
2131
  # resp = client.update_agent_status({
2065
2132
  # agent_id: "Uuid", # required
2133
+ # task_id: "Uuid", # required
2066
2134
  # aggregate_status: { # required
2135
+ # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
2067
2136
  # signature_map: {
2068
2137
  # "String" => false,
2069
2138
  # },
2070
- # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
2071
2139
  # },
2072
2140
  # component_statuses: [ # required
2073
2141
  # {
2074
- # bytes_received: 1,
2075
- # bytes_sent: 1,
2076
- # capability_arn: "CapabilityArn", # required
2077
2142
  # component_type: "ComponentTypeString", # required
2078
- # dataflow_id: "Uuid", # required
2079
- # packets_dropped: 1,
2143
+ # capability_arn: "CapabilityArn", # required
2080
2144
  # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
2145
+ # bytes_sent: 1,
2146
+ # bytes_received: 1,
2147
+ # packets_dropped: 1,
2148
+ # dataflow_id: "Uuid", # required
2081
2149
  # },
2082
2150
  # ],
2083
- # task_id: "Uuid", # required
2084
2151
  # })
2085
2152
  #
2086
2153
  # @example Response structure
@@ -2101,101 +2168,101 @@ module Aws::GroundStation
2101
2168
  # Updating a `Config` will not update the execution parameters for
2102
2169
  # existing future contacts scheduled with this `Config`.
2103
2170
  #
2104
- # @option params [required, Types::ConfigTypeData] :config_data
2105
- # Parameters of a `Config`.
2106
- #
2107
2171
  # @option params [required, String] :config_id
2108
2172
  # UUID of a `Config`.
2109
2173
  #
2174
+ # @option params [required, String] :name
2175
+ # Name of a `Config`.
2176
+ #
2110
2177
  # @option params [required, String] :config_type
2111
2178
  # Type of a `Config`.
2112
2179
  #
2113
- # @option params [required, String] :name
2114
- # Name of a `Config`.
2180
+ # @option params [required, Types::ConfigTypeData] :config_data
2181
+ # Parameters of a `Config`.
2115
2182
  #
2116
2183
  # @return [Types::ConfigIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2117
2184
  #
2118
- # * {Types::ConfigIdResponse#config_arn #config_arn} => String
2119
2185
  # * {Types::ConfigIdResponse#config_id #config_id} => String
2120
2186
  # * {Types::ConfigIdResponse#config_type #config_type} => String
2187
+ # * {Types::ConfigIdResponse#config_arn #config_arn} => String
2121
2188
  #
2122
2189
  # @example Request syntax with placeholder values
2123
2190
  #
2124
2191
  # resp = client.update_config({
2192
+ # config_id: "Uuid", # required
2193
+ # name: "SafeName", # required
2194
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, tracking, dataflow-endpoint, antenna-uplink, uplink-echo, s3-recording
2125
2195
  # config_data: { # required
2126
2196
  # antenna_downlink_config: {
2127
2197
  # spectrum_config: { # required
2128
- # bandwidth: { # required
2129
- # units: "GHz", # required, accepts GHz, MHz, kHz
2130
- # value: 1.0, # required
2131
- # },
2132
2198
  # center_frequency: { # required
2199
+ # value: 1.0, # required
2133
2200
  # units: "GHz", # required, accepts GHz, MHz, kHz
2201
+ # },
2202
+ # bandwidth: { # required
2134
2203
  # value: 1.0, # required
2204
+ # units: "GHz", # required, accepts GHz, MHz, kHz
2135
2205
  # },
2136
2206
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
2137
2207
  # },
2138
2208
  # },
2209
+ # tracking_config: {
2210
+ # autotrack: "REQUIRED", # required, accepts REQUIRED, PREFERRED, REMOVED
2211
+ # },
2212
+ # dataflow_endpoint_config: {
2213
+ # dataflow_endpoint_name: "String", # required
2214
+ # dataflow_endpoint_region: "String",
2215
+ # },
2139
2216
  # antenna_downlink_demod_decode_config: {
2140
- # decode_config: { # required
2141
- # unvalidated_json: "JsonString", # required
2142
- # },
2143
- # demodulation_config: { # required
2144
- # unvalidated_json: "JsonString", # required
2145
- # },
2146
2217
  # spectrum_config: { # required
2147
- # bandwidth: { # required
2148
- # units: "GHz", # required, accepts GHz, MHz, kHz
2149
- # value: 1.0, # required
2150
- # },
2151
2218
  # center_frequency: { # required
2219
+ # value: 1.0, # required
2152
2220
  # units: "GHz", # required, accepts GHz, MHz, kHz
2221
+ # },
2222
+ # bandwidth: { # required
2153
2223
  # value: 1.0, # required
2224
+ # units: "GHz", # required, accepts GHz, MHz, kHz
2154
2225
  # },
2155
2226
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
2156
2227
  # },
2228
+ # demodulation_config: { # required
2229
+ # unvalidated_json: "JsonString", # required
2230
+ # },
2231
+ # decode_config: { # required
2232
+ # unvalidated_json: "JsonString", # required
2233
+ # },
2157
2234
  # },
2158
2235
  # antenna_uplink_config: {
2236
+ # transmit_disabled: false,
2159
2237
  # spectrum_config: { # required
2160
2238
  # center_frequency: { # required
2161
- # units: "GHz", # required, accepts GHz, MHz, kHz
2162
2239
  # value: 1.0, # required
2240
+ # units: "GHz", # required, accepts GHz, MHz, kHz
2163
2241
  # },
2164
2242
  # polarization: "RIGHT_HAND", # accepts RIGHT_HAND, LEFT_HAND, NONE
2165
2243
  # },
2166
2244
  # target_eirp: { # required
2167
- # units: "dBW", # required, accepts dBW
2168
2245
  # value: 1.0, # required
2246
+ # units: "dBW", # required, accepts dBW
2169
2247
  # },
2170
- # transmit_disabled: false,
2171
2248
  # },
2172
- # dataflow_endpoint_config: {
2173
- # dataflow_endpoint_name: "String", # required
2174
- # dataflow_endpoint_region: "String",
2249
+ # uplink_echo_config: {
2250
+ # enabled: false, # required
2251
+ # antenna_uplink_config_arn: "ConfigArn", # required
2175
2252
  # },
2176
2253
  # s3_recording_config: {
2177
2254
  # bucket_arn: "BucketArn", # required
2178
- # prefix: "S3KeyPrefix",
2179
2255
  # role_arn: "RoleArn", # required
2180
- # },
2181
- # tracking_config: {
2182
- # autotrack: "REQUIRED", # required, accepts REQUIRED, PREFERRED, REMOVED
2183
- # },
2184
- # uplink_echo_config: {
2185
- # antenna_uplink_config_arn: "ConfigArn", # required
2186
- # enabled: false, # required
2256
+ # prefix: "S3KeyPrefix",
2187
2257
  # },
2188
2258
  # },
2189
- # config_id: "Uuid", # required
2190
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, tracking, dataflow-endpoint, antenna-uplink, uplink-echo, s3-recording
2191
- # name: "SafeName", # required
2192
2259
  # })
2193
2260
  #
2194
2261
  # @example Response structure
2195
2262
  #
2196
- # resp.config_arn #=> String
2197
2263
  # resp.config_id #=> String
2198
2264
  # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "tracking", "dataflow-endpoint", "antenna-uplink", "uplink-echo", "s3-recording"
2265
+ # resp.config_arn #=> String
2199
2266
  #
2200
2267
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateConfig AWS API Documentation
2201
2268
  #
@@ -2206,27 +2273,24 @@ module Aws::GroundStation
2206
2273
  req.send_request(options)
2207
2274
  end
2208
2275
 
2209
- # Updates an existing ephemeris
2210
- #
2211
- # @option params [required, Boolean] :enabled
2212
- # Whether the ephemeris is enabled or not. Changing this value will not
2213
- # require the ephemeris to be re-validated.
2276
+ # Update an existing ephemeris.
2214
2277
  #
2215
2278
  # @option params [required, String] :ephemeris_id
2216
2279
  # The AWS Ground Station ephemeris ID.
2217
2280
  #
2281
+ # @option params [required, Boolean] :enabled
2282
+ # Enable or disable the ephemeris. Changing this value doesn't require
2283
+ # re-validation.
2284
+ #
2218
2285
  # @option params [String] :name
2219
- # A name string associated with the ephemeris. Used as a human-readable
2220
- # identifier for the ephemeris.
2286
+ # A name that you can use to identify the ephemeris.
2221
2287
  #
2222
2288
  # @option params [Integer] :priority
2223
- # Customer-provided priority score to establish the order in which
2224
- # overlapping ephemerides should be used.
2225
- #
2226
- # The default for customer-provided ephemeris priority is 1, and higher
2227
- # numbers take precedence.
2289
+ # A priority score that determines which ephemeris to use when multiple
2290
+ # ephemerides overlap.
2228
2291
  #
2229
- # Priority must be 1 or greater
2292
+ # Higher numbers take precedence. The default is 1. Must be 1 or
2293
+ # greater.
2230
2294
  #
2231
2295
  # @return [Types::EphemerisIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2232
2296
  #
@@ -2235,8 +2299,8 @@ module Aws::GroundStation
2235
2299
  # @example Request syntax with placeholder values
2236
2300
  #
2237
2301
  # resp = client.update_ephemeris({
2238
- # enabled: false, # required
2239
2302
  # ephemeris_id: "Uuid", # required
2303
+ # enabled: false, # required
2240
2304
  # name: "SafeName",
2241
2305
  # priority: 1,
2242
2306
  # })
@@ -2259,30 +2323,33 @@ module Aws::GroundStation
2259
2323
  # Updating a mission profile will not update the execution parameters
2260
2324
  # for existing future contacts.
2261
2325
  #
2262
- # @option params [Integer] :contact_post_pass_duration_seconds
2326
+ # @option params [required, String] :mission_profile_id
2327
+ # UUID of a mission profile.
2328
+ #
2329
+ # @option params [String] :name
2330
+ # Name of a mission profile.
2331
+ #
2332
+ # @option params [Integer] :contact_pre_pass_duration_seconds
2263
2333
  # Amount of time after a contact ends that you’d like to receive a
2264
2334
  # Ground Station Contact State Change event indicating the pass has
2265
2335
  # finished.
2266
2336
  #
2267
- # @option params [Integer] :contact_pre_pass_duration_seconds
2337
+ # @option params [Integer] :contact_post_pass_duration_seconds
2268
2338
  # Amount of time after a contact ends that you’d like to receive a
2269
2339
  # Ground Station Contact State Change event indicating the pass has
2270
2340
  # finished.
2271
2341
  #
2272
- # @option params [Array<Array>] :dataflow_edges
2273
- # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
2274
- # `Config` and a *to* `Config`.
2275
- #
2276
2342
  # @option params [Integer] :minimum_viable_contact_duration_seconds
2277
2343
  # Smallest amount of time in seconds that you’d like to see for an
2278
2344
  # available contact. AWS Ground Station will not present you with
2279
2345
  # contacts shorter than this duration.
2280
2346
  #
2281
- # @option params [required, String] :mission_profile_id
2282
- # UUID of a mission profile.
2347
+ # @option params [Array<Array>] :dataflow_edges
2348
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
2349
+ # `Config` and a *to* `Config`.
2283
2350
  #
2284
- # @option params [String] :name
2285
- # Name of a mission profile.
2351
+ # @option params [String] :tracking_config_arn
2352
+ # ARN of a tracking `Config`.
2286
2353
  #
2287
2354
  # @option params [Types::KmsKey] :streams_kms_key
2288
2355
  # KMS key to use for encrypting streams.
@@ -2290,9 +2357,6 @@ module Aws::GroundStation
2290
2357
  # @option params [String] :streams_kms_role
2291
2358
  # Role to use for encrypting streams with KMS key.
2292
2359
  #
2293
- # @option params [String] :tracking_config_arn
2294
- # ARN of a tracking `Config`.
2295
- #
2296
2360
  # @return [Types::MissionProfileIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2297
2361
  #
2298
2362
  # * {Types::MissionProfileIdResponse#mission_profile_id #mission_profile_id} => String
@@ -2300,21 +2364,21 @@ module Aws::GroundStation
2300
2364
  # @example Request syntax with placeholder values
2301
2365
  #
2302
2366
  # resp = client.update_mission_profile({
2303
- # contact_post_pass_duration_seconds: 1,
2367
+ # mission_profile_id: "Uuid", # required
2368
+ # name: "SafeName",
2304
2369
  # contact_pre_pass_duration_seconds: 1,
2370
+ # contact_post_pass_duration_seconds: 1,
2371
+ # minimum_viable_contact_duration_seconds: 1,
2305
2372
  # dataflow_edges: [
2306
2373
  # ["ConfigArn"],
2307
2374
  # ],
2308
- # minimum_viable_contact_duration_seconds: 1,
2309
- # mission_profile_id: "Uuid", # required
2310
- # name: "SafeName",
2375
+ # tracking_config_arn: "ConfigArn",
2311
2376
  # streams_kms_key: {
2377
+ # kms_key_arn: "KeyArn",
2312
2378
  # kms_alias_arn: "KeyAliasArn",
2313
2379
  # kms_alias_name: "KeyAliasName",
2314
- # kms_key_arn: "KeyArn",
2315
2380
  # },
2316
2381
  # streams_kms_role: "RoleArn",
2317
- # tracking_config_arn: "ConfigArn",
2318
2382
  # })
2319
2383
  #
2320
2384
  # @example Response structure
@@ -2348,7 +2412,7 @@ module Aws::GroundStation
2348
2412
  tracer: tracer
2349
2413
  )
2350
2414
  context[:gem_name] = 'aws-sdk-groundstation'
2351
- context[:gem_version] = '1.73.0'
2415
+ context[:gem_version] = '1.74.0'
2352
2416
  Seahorse::Client::Request.new(handlers, context)
2353
2417
  end
2354
2418