1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Detailed information about the agent.
type AgentDetails struct {
// Current agent version.
//
// This member is required.
AgentVersion *string
// List of versions being used by agent components.
//
// This member is required.
ComponentVersions []ComponentVersion
// ID of EC2 instance agent is running on.
//
// This member is required.
InstanceId *string
// Type of EC2 instance agent is running on.
//
// This member is required.
InstanceType *string
// List of CPU cores reserved for the agent.
AgentCpuCores []int32
// This field should not be used. Use agentCpuCores instead. List of CPU cores
// reserved for processes other than the agent running on the EC2 instance.
ReservedCpuCores []int32
noSmithyDocumentSerde
}
// Aggregate status of Agent components.
type AggregateStatus struct {
// Aggregate status.
//
// This member is required.
Status AgentStatus
// Sparse map of failure signatures.
SignatureMap map[string]bool
noSmithyDocumentSerde
}
// Details about an antenna demod decode Config used in a contact.
type AntennaDemodDecodeDetails struct {
// Name of an antenna demod decode output node used in a contact.
OutputNode *string
noSmithyDocumentSerde
}
// Information about how AWS Ground Station should configure an antenna for
// downlink during a contact.
type AntennaDownlinkConfig struct {
// Object that describes a spectral Config .
//
// This member is required.
SpectrumConfig *SpectrumConfig
noSmithyDocumentSerde
}
// Information about how AWS Ground Station should configure an antenna for
// downlink demod decode during a contact.
type AntennaDownlinkDemodDecodeConfig struct {
// Information about the decode Config .
//
// This member is required.
DecodeConfig *DecodeConfig
// Information about the demodulation Config .
//
// This member is required.
DemodulationConfig *DemodulationConfig
// Information about the spectral Config .
//
// This member is required.
SpectrumConfig *SpectrumConfig
noSmithyDocumentSerde
}
// Information about the uplink Config of an antenna.
type AntennaUplinkConfig struct {
// Information about the uplink spectral Config .
//
// This member is required.
SpectrumConfig *UplinkSpectrumConfig
// EIRP of the target.
//
// This member is required.
TargetEirp *Eirp
// Whether or not uplink transmit is disabled.
TransmitDisabled *bool
noSmithyDocumentSerde
}
// Information about AwsGroundStationAgentEndpoint.
type AwsGroundStationAgentEndpoint struct {
// The egress address of AgentEndpoint.
//
// This member is required.
EgressAddress *ConnectionDetails
// The ingress address of AgentEndpoint.
//
// This member is required.
IngressAddress *RangedConnectionDetails
// Name string associated with AgentEndpoint. Used as a human-readable identifier
// for AgentEndpoint.
//
// This member is required.
Name *string
// The status of AgentEndpoint.
AgentStatus AgentStatus
// The results of the audit.
AuditResults AuditResults
noSmithyDocumentSerde
}
// Data on the status of agent components.
type ComponentStatusData struct {
// Capability ARN of the component.
//
// This member is required.
CapabilityArn *string
// The Component type.
//
// This member is required.
ComponentType *string
// Dataflow UUID associated with the component.
//
// This member is required.
DataflowId *string
// Component status.
//
// This member is required.
Status AgentStatus
// Bytes received by the component.
BytesReceived *int64
// Bytes sent by the component.
BytesSent *int64
// Packets dropped by component.
PacketsDropped *int64
noSmithyDocumentSerde
}
// Version information for agent components.
type ComponentVersion struct {
// Component type.
//
// This member is required.
ComponentType *string
// List of versions.
//
// This member is required.
Versions []string
noSmithyDocumentSerde
}
// Details for certain Config object types in a contact.
//
// The following types satisfy this interface:
//
// ConfigDetailsMemberAntennaDemodDecodeDetails
// ConfigDetailsMemberEndpointDetails
// ConfigDetailsMemberS3RecordingDetails
type ConfigDetails interface {
isConfigDetails()
}
// Details for antenna demod decode Config in a contact.
type ConfigDetailsMemberAntennaDemodDecodeDetails struct {
Value AntennaDemodDecodeDetails
noSmithyDocumentSerde
}
func (*ConfigDetailsMemberAntennaDemodDecodeDetails) isConfigDetails() {}
// Information about the endpoint details.
type ConfigDetailsMemberEndpointDetails struct {
Value EndpointDetails
noSmithyDocumentSerde
}
func (*ConfigDetailsMemberEndpointDetails) isConfigDetails() {}
// Details for an S3 recording Config in a contact.
type ConfigDetailsMemberS3RecordingDetails struct {
Value S3RecordingDetails
noSmithyDocumentSerde
}
func (*ConfigDetailsMemberS3RecordingDetails) isConfigDetails() {}
// An item in a list of Config objects.
type ConfigListItem struct {
// ARN of a Config .
ConfigArn *string
// UUID of a Config .
ConfigId *string
// Type of a Config .
ConfigType ConfigCapabilityType
// Name of a Config .
Name *string
noSmithyDocumentSerde
}
// Object containing the parameters of a Config . See the subtype definitions for
// what each type of Config contains.
//
// The following types satisfy this interface:
//
// ConfigTypeDataMemberAntennaDownlinkConfig
// ConfigTypeDataMemberAntennaDownlinkDemodDecodeConfig
// ConfigTypeDataMemberAntennaUplinkConfig
// ConfigTypeDataMemberDataflowEndpointConfig
// ConfigTypeDataMemberS3RecordingConfig
// ConfigTypeDataMemberTrackingConfig
// ConfigTypeDataMemberUplinkEchoConfig
type ConfigTypeData interface {
isConfigTypeData()
}
// Information about how AWS Ground Station should configure an antenna for
// downlink during a contact.
type ConfigTypeDataMemberAntennaDownlinkConfig struct {
Value AntennaDownlinkConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberAntennaDownlinkConfig) isConfigTypeData() {}
// Information about how AWS Ground Station should configure an antenna for
// downlink demod decode during a contact.
type ConfigTypeDataMemberAntennaDownlinkDemodDecodeConfig struct {
Value AntennaDownlinkDemodDecodeConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberAntennaDownlinkDemodDecodeConfig) isConfigTypeData() {}
// Information about how AWS Ground Station should configure an antenna for uplink
// during a contact.
type ConfigTypeDataMemberAntennaUplinkConfig struct {
Value AntennaUplinkConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberAntennaUplinkConfig) isConfigTypeData() {}
// Information about the dataflow endpoint Config .
type ConfigTypeDataMemberDataflowEndpointConfig struct {
Value DataflowEndpointConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberDataflowEndpointConfig) isConfigTypeData() {}
// Information about an S3 recording Config .
type ConfigTypeDataMemberS3RecordingConfig struct {
Value S3RecordingConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberS3RecordingConfig) isConfigTypeData() {}
// Object that determines whether tracking should be used during a contact
// executed with this Config in the mission profile.
type ConfigTypeDataMemberTrackingConfig struct {
Value TrackingConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberTrackingConfig) isConfigTypeData() {}
// Information about an uplink echo Config . Parameters from the
// AntennaUplinkConfig , corresponding to the specified AntennaUplinkConfigArn ,
// are used when this UplinkEchoConfig is used in a contact.
type ConfigTypeDataMemberUplinkEchoConfig struct {
Value UplinkEchoConfig
noSmithyDocumentSerde
}
func (*ConfigTypeDataMemberUplinkEchoConfig) isConfigTypeData() {}
// Egress address of AgentEndpoint with an optional mtu.
type ConnectionDetails struct {
// A socket address.
//
// This member is required.
SocketAddress *SocketAddress
// Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
Mtu *int32
noSmithyDocumentSerde
}
// Data describing a contact.
type ContactData struct {
// UUID of a contact.
ContactId *string
// Status of a contact.
ContactStatus ContactStatus
// End time of a contact in UTC.
EndTime *time.Time
// Error message of a contact.
ErrorMessage *string
// Name of a ground station.
GroundStation *string
// Maximum elevation angle of a contact.
MaximumElevation *Elevation
// ARN of a mission profile.
MissionProfileArn *string
// Amount of time after a contact ends that you’d like to receive a CloudWatch
// event indicating the pass has finished.
PostPassEndTime *time.Time
// Amount of time prior to contact start you’d like to receive a CloudWatch event
// indicating an upcoming pass.
PrePassStartTime *time.Time
// Region of a contact.
Region *string
// ARN of a satellite.
SatelliteArn *string
// Start time of a contact in UTC.
StartTime *time.Time
// Tags assigned to a contact.
Tags map[string]string
noSmithyDocumentSerde
}
// Information about a dataflow edge used in a contact.
type DataflowDetail struct {
// Dataflow details for the destination side.
Destination *Destination
// Error message for a dataflow.
ErrorMessage *string
// Dataflow details for the source side.
Source *Source
noSmithyDocumentSerde
}
// Information about a dataflow endpoint.
type DataflowEndpoint struct {
// Socket address of a dataflow endpoint.
Address *SocketAddress
// Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
Mtu *int32
// Name of a dataflow endpoint.
Name *string
// Status of a dataflow endpoint.
Status EndpointStatus
noSmithyDocumentSerde
}
// Information about the dataflow endpoint Config .
type DataflowEndpointConfig struct {
// Name of a dataflow endpoint.
//
// This member is required.
DataflowEndpointName *string
// Region of a dataflow endpoint.
DataflowEndpointRegion *string
noSmithyDocumentSerde
}
// Item in a list of DataflowEndpoint groups.
type DataflowEndpointListItem struct {
// ARN of a dataflow endpoint group.
DataflowEndpointGroupArn *string
// UUID of a dataflow endpoint group.
DataflowEndpointGroupId *string
noSmithyDocumentSerde
}
// Information about the decode Config .
type DecodeConfig struct {
// Unvalidated JSON of a decode Config .
//
// This member is required.
UnvalidatedJSON *string
noSmithyDocumentSerde
}
// Information about the demodulation Config .
type DemodulationConfig struct {
// Unvalidated JSON of a demodulation Config .
//
// This member is required.
UnvalidatedJSON *string
noSmithyDocumentSerde
}
// Dataflow details for the destination side.
type Destination struct {
// Additional details for a Config , if type is dataflow endpoint or antenna demod
// decode.
ConfigDetails ConfigDetails
// UUID of a Config .
ConfigId *string
// Type of a Config .
ConfigType ConfigCapabilityType
// Region of a dataflow destination.
DataflowDestinationRegion *string
noSmithyDocumentSerde
}
// Data for agent discovery.
type DiscoveryData struct {
// List of capabilities to associate with agent.
//
// This member is required.
CapabilityArns []string
// List of private IP addresses to associate with agent.
//
// This member is required.
PrivateIpAddresses []string
// List of public IP addresses to associate with agent.
//
// This member is required.
PublicIpAddresses []string
noSmithyDocumentSerde
}
// Object that represents EIRP.
type Eirp struct {
// Units of an EIRP.
//
// This member is required.
Units EirpUnits
// Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// Elevation angle of the satellite in the sky during a contact.
type Elevation struct {
// Elevation angle units.
//
// This member is required.
Unit AngleUnits
// Elevation angle value.
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// Information about the endpoint details.
type EndpointDetails struct {
// An agent endpoint.
AwsGroundStationAgentEndpoint *AwsGroundStationAgentEndpoint
// A dataflow endpoint.
Endpoint *DataflowEndpoint
// Health reasons for a dataflow endpoint. This field is ignored when calling
// CreateDataflowEndpointGroup .
HealthReasons []CapabilityHealthReason
// A dataflow endpoint health status. This field is ignored when calling
// CreateDataflowEndpointGroup .
HealthStatus CapabilityHealth
// Endpoint security details including a list of subnets, a list of security
// groups and a role to connect streams to instances.
SecurityDetails *SecurityDetails
noSmithyDocumentSerde
}
// Ephemeris data.
//
// The following types satisfy this interface:
//
// EphemerisDataMemberOem
// EphemerisDataMemberTle
type EphemerisData interface {
isEphemerisData()
}
// Ephemeris data in Orbit Ephemeris Message (OEM) format.
type EphemerisDataMemberOem struct {
Value OEMEphemeris
noSmithyDocumentSerde
}
func (*EphemerisDataMemberOem) isEphemerisData() {}
// Two-line element set (TLE) ephemeris.
type EphemerisDataMemberTle struct {
Value TLEEphemeris
noSmithyDocumentSerde
}
func (*EphemerisDataMemberTle) isEphemerisData() {}
// Description of ephemeris.
type EphemerisDescription struct {
// Supplied ephemeris data.
EphemerisData *string
// Source S3 object used for the ephemeris.
SourceS3Object *S3Object
noSmithyDocumentSerde
}
// Ephemeris item.
type EphemerisItem struct {
// The time the ephemeris was uploaded in UTC.
CreationTime *time.Time
// Whether or not the ephemeris is enabled.
Enabled *bool
// The AWS Ground Station ephemeris ID.
EphemerisId *string
// A name string associated with the ephemeris. Used as a human-readable
// identifier for the ephemeris.
Name *string
// Customer-provided priority score to establish the order in which overlapping
// ephemerides should be used. The default for customer-provided ephemeris priority
// is 1, and higher numbers take precedence. Priority must be 1 or greater
Priority *int32
// Source S3 object used for the ephemeris.
SourceS3Object *S3Object
// The status of the ephemeris.
Status EphemerisStatus
noSmithyDocumentSerde
}
// Metadata describing a particular ephemeris.
type EphemerisMetaData struct {
// The EphemerisSource that generated a given ephemeris.
//
// This member is required.
Source EphemerisSource
// UUID of a customer-provided ephemeris. This field is not populated for default
// ephemerides from Space Track.
EphemerisId *string
// The epoch of a default, ephemeris from Space Track in UTC. This field is not
// populated for customer-provided ephemerides.
Epoch *time.Time
// A name string associated with the ephemeris. Used as a human-readable
// identifier for the ephemeris. A name is only returned for customer-provider
// ephemerides that have a name associated.
Name *string
noSmithyDocumentSerde
}
// The following types satisfy this interface:
//
// EphemerisTypeDescriptionMemberOem
// EphemerisTypeDescriptionMemberTle
type EphemerisTypeDescription interface {
isEphemerisTypeDescription()
}
// Description of ephemeris.
type EphemerisTypeDescriptionMemberOem struct {
Value EphemerisDescription
noSmithyDocumentSerde
}
func (*EphemerisTypeDescriptionMemberOem) isEphemerisTypeDescription() {}
// Description of ephemeris.
type EphemerisTypeDescriptionMemberTle struct {
Value EphemerisDescription
noSmithyDocumentSerde
}
func (*EphemerisTypeDescriptionMemberTle) isEphemerisTypeDescription() {}
// Object that describes the frequency.
type Frequency struct {
// Frequency units.
//
// This member is required.
Units FrequencyUnits
// Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz
// for downlink and 2025 to 2120 MHz for uplink.
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// Object that describes the frequency bandwidth.
type FrequencyBandwidth struct {
// Frequency bandwidth units.
//
// This member is required.
Units BandwidthUnits
// Frequency bandwidth value. AWS Ground Station currently has the following
// bandwidth limitations:
// - For AntennaDownlinkDemodDecodeconfig , valid values are between 125 kHz to
// 650 MHz.
// - For AntennaDownlinkconfig , valid values are between 10 kHz to 54 MHz.
// - For AntennaUplinkConfig , valid values are between 10 kHz to 54 MHz.
//
// This member is required.
Value *float64
noSmithyDocumentSerde
}
// Information about the ground station data.
type GroundStationData struct {
// UUID of a ground station.
GroundStationId *string
// Name of a ground station.
GroundStationName *string
// Ground station Region.
Region *string
noSmithyDocumentSerde
}
// An integer range that has a minimum and maximum value.
type IntegerRange struct {
// A maximum value.
//
// This member is required.
Maximum *int32
// A minimum value.
//
// This member is required.
Minimum *int32
noSmithyDocumentSerde
}
// AWS Key Management Service (KMS) Key.
//
// The following types satisfy this interface:
//
// KmsKeyMemberKmsAliasArn
// KmsKeyMemberKmsAliasName
// KmsKeyMemberKmsKeyArn
type KmsKey interface {
isKmsKey()
}
// KMS Alias Arn.
type KmsKeyMemberKmsAliasArn struct {
Value string
noSmithyDocumentSerde
}
func (*KmsKeyMemberKmsAliasArn) isKmsKey() {}
// KMS Alias Name.
type KmsKeyMemberKmsAliasName struct {
Value string
noSmithyDocumentSerde
}
func (*KmsKeyMemberKmsAliasName) isKmsKey() {}
// KMS Key Arn.
type KmsKeyMemberKmsKeyArn struct {
Value string
noSmithyDocumentSerde
}
func (*KmsKeyMemberKmsKeyArn) isKmsKey() {}
// Item in a list of mission profiles.
type MissionProfileListItem struct {
// ARN of a mission profile.
MissionProfileArn *string
// UUID of a mission profile.
MissionProfileId *string
// Name of a mission profile.
Name *string
// Region of a mission profile.
Region *string
noSmithyDocumentSerde
}
// Ephemeris data in Orbit Ephemeris Message (OEM) format.
type OEMEphemeris struct {
// The data for an OEM ephemeris, supplied directly in the request rather than
// through an S3 object.
OemData *string
// Identifies the S3 object to be used as the ephemeris.
S3Object *S3Object
noSmithyDocumentSerde
}
// Ingress address of AgentEndpoint with a port range and an optional mtu.
type RangedConnectionDetails struct {
// A ranged socket address.
//
// This member is required.
SocketAddress *RangedSocketAddress
// Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
Mtu *int32
noSmithyDocumentSerde
}
// A socket address with a port range.
type RangedSocketAddress struct {
// IPv4 socket address.
//
// This member is required.
Name *string
// Port range of a socket address.
//
// This member is required.
PortRange *IntegerRange
noSmithyDocumentSerde
}
// Object stored in S3 containing ephemeris data.
type S3Object struct {
// An Amazon S3 Bucket name.
Bucket *string
// An Amazon S3 key for the ephemeris.
Key *string
// For versioned S3 objects, the version to use for the ephemeris.
Version *string
noSmithyDocumentSerde
}
// Information about an S3 recording Config .
type S3RecordingConfig struct {
// ARN of the bucket to record to.
//
// This member is required.
BucketArn *string
// ARN of the role Ground Station assumes to write data to the bucket.
//
// This member is required.
RoleArn *string
// S3 Key prefix to prefice data files.
Prefix *string
noSmithyDocumentSerde
}
// Details about an S3 recording Config used in a contact.
type S3RecordingDetails struct {
// ARN of the bucket used.
BucketArn *string
// Key template used for the S3 Recording Configuration
KeyTemplate *string
noSmithyDocumentSerde
}
// Item in a list of satellites.
type SatelliteListItem struct {
// The current ephemeris being used to compute the trajectory of the satellite.
CurrentEphemeris *EphemerisMetaData
// A list of ground stations to which the satellite is on-boarded.
GroundStations []string
// NORAD satellite ID number.
NoradSatelliteID int32
// ARN of a satellite.
SatelliteArn *string
// UUID of a satellite.
SatelliteId *string
noSmithyDocumentSerde
}
// Information about endpoints.
type SecurityDetails struct {
// ARN to a role needed for connecting streams to your instances.
//
// This member is required.
RoleArn *string
// The security groups to attach to the elastic network interfaces.
//
// This member is required.
SecurityGroupIds []string
// A list of subnets where AWS Ground Station places elastic network interfaces to
// send streams to your instances.
//
// This member is required.
SubnetIds []string
noSmithyDocumentSerde
}
// Information about the socket address.
type SocketAddress struct {
// Name of a socket address.
//
// This member is required.
Name *string
// Port of a socket address.
//
// This member is required.
Port *int32
noSmithyDocumentSerde
}
// Dataflow details for the source side.
type Source struct {
// Additional details for a Config , if type is dataflow-endpoint or
// antenna-downlink-demod-decode
ConfigDetails ConfigDetails
// UUID of a Config .
ConfigId *string
// Type of a Config .
ConfigType ConfigCapabilityType
// Region of a dataflow source.
DataflowSourceRegion *string
noSmithyDocumentSerde
}
// Object that describes a spectral Config .
type SpectrumConfig struct {
// Bandwidth of a spectral Config . AWS Ground Station currently has the following
// bandwidth limitations:
// - For AntennaDownlinkDemodDecodeconfig , valid values are between 125 kHz to
// 650 MHz.
// - For AntennaDownlinkconfig valid values are between 10 kHz to 54 MHz.
// - For AntennaUplinkConfig , valid values are between 10 kHz to 54 MHz.
//
// This member is required.
Bandwidth *FrequencyBandwidth
// Center frequency of a spectral Config . Valid values are between 2200 to 2300
// MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
//
// This member is required.
CenterFrequency *Frequency
// Polarization of a spectral Config . Capturing both "RIGHT_HAND" and "LEFT_HAND"
// polarization requires two separate configs.
Polarization Polarization
noSmithyDocumentSerde
}
// A time range with a start and end time.
type TimeRange struct {
// Time in UTC at which the time range ends.
//
// This member is required.
EndTime *time.Time
// Time in UTC at which the time range starts.
//
// This member is required.
StartTime *time.Time
noSmithyDocumentSerde
}
// Two-line element set (TLE) data.
type TLEData struct {
// First line of two-line element set (TLE) data.
//
// This member is required.
TleLine1 *string
// Second line of two-line element set (TLE) data.
//
// This member is required.
TleLine2 *string
// The valid time range for the TLE. Gaps or overlap are not permitted.
//
// This member is required.
ValidTimeRange *TimeRange
noSmithyDocumentSerde
}
// Two-line element set (TLE) ephemeris.
type TLEEphemeris struct {
// Identifies the S3 object to be used as the ephemeris.
S3Object *S3Object
// The data for a TLE ephemeris, supplied directly in the request rather than
// through an S3 object.
TleData []TLEData
noSmithyDocumentSerde
}
// Object that determines whether tracking should be used during a contact
// executed with this Config in the mission profile.
type TrackingConfig struct {
// Current setting for autotrack.
//
// This member is required.
Autotrack Criticality
noSmithyDocumentSerde
}
// Information about an uplink echo Config . Parameters from the
// AntennaUplinkConfig , corresponding to the specified AntennaUplinkConfigArn ,
// are used when this UplinkEchoConfig is used in a contact.
type UplinkEchoConfig struct {
// ARN of an uplink Config .
//
// This member is required.
AntennaUplinkConfigArn *string
// Whether or not an uplink Config is enabled.
//
// This member is required.
Enabled *bool
noSmithyDocumentSerde
}
// Information about the uplink spectral Config .
type UplinkSpectrumConfig struct {
// Center frequency of an uplink spectral Config . Valid values are between 2025 to
// 2120 MHz.
//
// This member is required.
CenterFrequency *Frequency
// Polarization of an uplink spectral Config . Capturing both "RIGHT_HAND" and
// "LEFT_HAND" polarization requires two separate configs.
Polarization Polarization
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isConfigDetails() {}
func (*UnknownUnionMember) isConfigTypeData() {}
func (*UnknownUnionMember) isEphemerisData() {}
func (*UnknownUnionMember) isEphemerisTypeDescription() {}
func (*UnknownUnionMember) isKmsKey() {}
|