We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.GroundStation

Inherits:
AWS.Service show all
Identifier:
groundstation
API Version:
2019-05-23
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure.

Sending a Request Using GroundStation

var groundstation = new AWS.GroundStation();
groundstation.cancelContact(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the GroundStation object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var groundstation = new AWS.GroundStation({apiVersion: '2019-05-23'});

You can also set the API version globally in AWS.config.apiVersions using the groundstation service identifier:

AWS.config.apiVersions = {
  groundstation: '2019-05-23',
  // other service API versions
};

var groundstation = new AWS.GroundStation();

Version:

  • 2019-05-23

Waiter Resource States

This service supports a list of resource states that can be polled using the waitFor() method. The resource states are:

contactScheduled

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, setupRequestListeners, defineService

Constructor Details

new AWS.GroundStation(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a GroundStation object

var groundstation = new AWS.GroundStation({apiVersion: '2019-05-23'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.GroundStation.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.GroundStation.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.GroundStation.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

  • useFipsEndpoint (Boolean)

    Enables FIPS compatible endpoints. Defaults to false.

  • useDualstackEndpoint (Boolean)

    Enables IPv6 dualstack endpoint. Defaults to false.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

cancelContact(params = {}, callback) ⇒ AWS.Request

Cancels a contact with a specified contact ID.

Service Reference:

Examples:

Calling the cancelContact operation

var params = {
  contactId: 'STRING_VALUE' /* required */
};
groundstation.cancelContact(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • contactId — (String)

      UUID of a contact.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactId — (String)

        UUID of a contact.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createConfig(params = {}, callback) ⇒ AWS.Request

Creates a Config with the specified configData parameters.

Only one type of configData can be specified.

Service Reference:

Examples:

Calling the createConfig operation

var params = {
  configData: { /* required */
    antennaDownlinkConfig: {
      spectrumConfig: { /* required */
        bandwidth: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      }
    },
    antennaDownlinkDemodDecodeConfig: {
      decodeConfig: { /* required */
        unvalidatedJSON: 'STRING_VALUE' /* required */
      },
      demodulationConfig: { /* required */
        unvalidatedJSON: 'STRING_VALUE' /* required */
      },
      spectrumConfig: { /* required */
        bandwidth: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      }
    },
    antennaUplinkConfig: {
      spectrumConfig: { /* required */
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      },
      targetEirp: { /* required */
        units: dBW, /* required */
        value: 'NUMBER_VALUE' /* required */
      },
      transmitDisabled: true || false
    },
    dataflowEndpointConfig: {
      dataflowEndpointName: 'STRING_VALUE', /* required */
      dataflowEndpointRegion: 'STRING_VALUE'
    },
    s3RecordingConfig: {
      bucketArn: 'STRING_VALUE', /* required */
      roleArn: 'STRING_VALUE', /* required */
      prefix: 'STRING_VALUE'
    },
    trackingConfig: {
      autotrack: PREFERRED | REMOVED | REQUIRED /* required */
    },
    uplinkEchoConfig: {
      antennaUplinkConfigArn: 'STRING_VALUE', /* required */
      enabled: true || false /* required */
    }
  },
  name: 'STRING_VALUE', /* required */
  tags: {
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.createConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • configData — (map)

      Parameters of a Config.

      • antennaDownlinkConfig — (map)

        Information about how AWS Ground Station should configure an antenna for downlink during a contact.

        • spectrumConfigrequired — (map)

          Object that describes a spectral Config.

          • bandwidthrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency bandwidth units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              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.

          • centerFrequencyrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
      • antennaDownlinkDemodDecodeConfig — (map)

        Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.

        • decodeConfigrequired — (map)

          Information about the decode Config.

          • unvalidatedJSONrequired — (String)

            Unvalidated JSON of a decode Config.

        • demodulationConfigrequired — (map)

          Information about the demodulation Config.

          • unvalidatedJSONrequired — (String)

            Unvalidated JSON of a demodulation Config.

        • spectrumConfigrequired — (map)

          Information about the spectral Config.

          • bandwidthrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency bandwidth units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              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.

          • centerFrequencyrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
      • antennaUplinkConfig — (map)

        Information about how AWS Ground Station should configure an antenna for uplink during a contact.

        • spectrumConfigrequired — (map)

          Information about the uplink spectral Config.

          • centerFrequencyrequired — (map)

            Center frequency of an uplink spectral Config. Valid values are between 2025 to 2120 MHz.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of an uplink spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
        • targetEirprequired — (map)

          EIRP of the target.

          • unitsrequired — (String)

            Units of an EIRP.

            Possible values include:
            • "dBW"
          • valuerequired — (Float)

            Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.

        • transmitDisabled — (Boolean)

          Whether or not uplink transmit is disabled.

      • dataflowEndpointConfig — (map)

        Information about the dataflow endpoint Config.

        • dataflowEndpointNamerequired — (String)

          Name of a dataflow endpoint.

        • dataflowEndpointRegion — (String)

          Region of a dataflow endpoint.

      • s3RecordingConfig — (map)

        Information about an S3 recording Config.

        • bucketArnrequired — (String)

          ARN of the bucket to record to.

        • prefix — (String)

          S3 Key prefix to prefice data files.

        • roleArnrequired — (String)

          ARN of the role Ground Station assumes to write data to the bucket.

      • trackingConfig — (map)

        Object that determines whether tracking should be used during a contact executed with this Config in the mission profile.

        • autotrackrequired — (String)

          Current setting for autotrack.

          Possible values include:
          • "PREFERRED"
          • "REMOVED"
          • "REQUIRED"
      • uplinkEchoConfig — (map)

        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.

        • antennaUplinkConfigArnrequired — (String)

          ARN of an uplink Config.

        • enabledrequired — (Boolean)

          Whether or not an uplink Config is enabled.

    • name — (String)

      Name of a Config.

    • tags — (map<String>)

      Tags assigned to a Config.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • configArn — (String)

        ARN of a Config.

      • configId — (String)

        UUID of a Config.

      • configType — (String)

        Type of a Config.

        Possible values include:
        • "antenna-downlink"
        • "antenna-downlink-demod-decode"
        • "antenna-uplink"
        • "dataflow-endpoint"
        • "tracking"
        • "uplink-echo"
        • "s3-recording"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createDataflowEndpointGroup(params = {}, callback) ⇒ AWS.Request

Creates a DataflowEndpoint group containing the specified list of DataflowEndpoint objects.

The name field in each endpoint is used in your mission profile DataflowEndpointConfig to specify which endpoints to use during a contact.

When a contact uses multiple DataflowEndpointConfig objects, each Config must match a DataflowEndpoint in the same group.

Service Reference:

Examples:

Calling the createDataflowEndpointGroup operation

var params = {
  endpointDetails: [ /* required */
    {
      awsGroundStationAgentEndpoint: {
        egressAddress: { /* required */
          socketAddress: { /* required */
            name: 'STRING_VALUE', /* required */
            port: 'NUMBER_VALUE' /* required */
          },
          mtu: 'NUMBER_VALUE'
        },
        ingressAddress: { /* required */
          socketAddress: { /* required */
            name: 'STRING_VALUE', /* required */
            portRange: { /* required */
              maximum: 'NUMBER_VALUE', /* required */
              minimum: 'NUMBER_VALUE' /* required */
            }
          },
          mtu: 'NUMBER_VALUE'
        },
        name: 'STRING_VALUE', /* required */
        agentStatus: SUCCESS | FAILED | ACTIVE | INACTIVE,
        auditResults: HEALTHY | UNHEALTHY
      },
      endpoint: {
        address: {
          name: 'STRING_VALUE', /* required */
          port: 'NUMBER_VALUE' /* required */
        },
        mtu: 'NUMBER_VALUE',
        name: 'STRING_VALUE',
        status: created | creating | deleted | deleting | failed
      },
      healthReasons: [
        NO_REGISTERED_AGENT | INVALID_IP_OWNERSHIP | NOT_AUTHORIZED_TO_CREATE_SLR | UNVERIFIED_IP_OWNERSHIP | INITIALIZING_DATAPLANE | DATAPLANE_FAILURE | HEALTHY,
        /* more items */
      ],
      healthStatus: UNHEALTHY | HEALTHY,
      securityDetails: {
        roleArn: 'STRING_VALUE', /* required */
        securityGroupIds: [ /* required */
          'STRING_VALUE',
          /* more items */
        ],
        subnetIds: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      }
    },
    /* more items */
  ],
  contactPostPassDurationSeconds: 'NUMBER_VALUE',
  contactPrePassDurationSeconds: 'NUMBER_VALUE',
  tags: {
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.createDataflowEndpointGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • contactPostPassDurationSeconds — (Integer)

      Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.

    • contactPrePassDurationSeconds — (Integer)

      Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.

    • endpointDetails — (Array<map>)

      Endpoint details of each endpoint in the dataflow endpoint group.

      • awsGroundStationAgentEndpoint — (map)

        An agent endpoint.

        • agentStatus — (String)

          The status of AgentEndpoint.

          Possible values include:
          • "SUCCESS"
          • "FAILED"
          • "ACTIVE"
          • "INACTIVE"
        • auditResults — (String)

          The results of the audit.

          Possible values include:
          • "HEALTHY"
          • "UNHEALTHY"
        • egressAddressrequired — (map)

          The egress address of AgentEndpoint.

          • mtu — (Integer)

            Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

          • socketAddressrequired — (map)

            A socket address.

            • namerequired — (String)

              Name of a socket address.

            • portrequired — (Integer)

              Port of a socket address.

        • ingressAddressrequired — (map)

          The ingress address of AgentEndpoint.

          • mtu — (Integer)

            Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

          • socketAddressrequired — (map)

            A ranged socket address.

            • namerequired — (String)

              IPv4 socket address.

            • portRangerequired — (map)

              Port range of a socket address.

              • maximumrequired — (Integer)

                A maximum value.

              • minimumrequired — (Integer)

                A minimum value.

        • namerequired — (String)

          Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

      • endpoint — (map)

        A dataflow endpoint.

        • address — (map)

          Socket address of a dataflow endpoint.

          • namerequired — (String)

            Name of a socket address.

          • portrequired — (Integer)

            Port of a socket address.

        • mtu — (Integer)

          Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

        • name — (String)

          Name of a dataflow endpoint.

        • status — (String)

          Status of a dataflow endpoint.

          Possible values include:
          • "created"
          • "creating"
          • "deleted"
          • "deleting"
          • "failed"
      • healthReasons — (Array<String>)

        Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

      • healthStatus — (String)

        A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

        Possible values include:
        • "UNHEALTHY"
        • "HEALTHY"
      • securityDetails — (map)

        Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

        • roleArnrequired — (String)

          ARN to a role needed for connecting streams to your instances.

        • securityGroupIdsrequired — (Array<String>)

          The security groups to attach to the elastic network interfaces.

        • subnetIdsrequired — (Array<String>)

          A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

    • tags — (map<String>)

      Tags of a dataflow endpoint group.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • dataflowEndpointGroupId — (String)

        UUID of a dataflow endpoint group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createEphemeris(params = {}, callback) ⇒ AWS.Request

Creates an Ephemeris with the specified EphemerisData.

Service Reference:

Examples:

Calling the createEphemeris operation

var params = {
  name: 'STRING_VALUE', /* required */
  satelliteId: 'STRING_VALUE', /* required */
  enabled: true || false,
  ephemeris: {
    oem: {
      oemData: 'STRING_VALUE',
      s3Object: {
        bucket: 'STRING_VALUE',
        key: 'STRING_VALUE',
        version: 'STRING_VALUE'
      }
    },
    tle: {
      s3Object: {
        bucket: 'STRING_VALUE',
        key: 'STRING_VALUE',
        version: 'STRING_VALUE'
      },
      tleData: [
        {
          tleLine1: 'STRING_VALUE', /* required */
          tleLine2: 'STRING_VALUE', /* required */
          validTimeRange: { /* required */
            endTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
            startTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789 /* required */
          }
        },
        /* more items */
      ]
    }
  },
  expirationTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
  kmsKeyArn: 'STRING_VALUE',
  priority: 'NUMBER_VALUE',
  tags: {
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.createEphemeris(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • enabled — (Boolean)

      Whether to set the ephemeris status to ENABLED after validation.

      Setting this to false will set the ephemeris status to DISABLED after validation.

    • ephemeris — (map)

      Ephemeris data.

      • oem — (map)

        Ephemeris data in Orbit Ephemeris Message (OEM) format.

        • oemData — (String)

          The data for an OEM ephemeris, supplied directly in the request rather than through an S3 object.

        • s3Object — (map)

          Identifies the S3 object to be used as the ephemeris.

          • bucket — (String)

            An Amazon S3 Bucket name.

          • key — (String)

            An Amazon S3 key for the ephemeris.

          • version — (String)

            For versioned S3 objects, the version to use for the ephemeris.

      • tle — (map)

        Two-line element set (TLE) ephemeris.

        • s3Object — (map)

          Identifies the S3 object to be used as the ephemeris.

          • bucket — (String)

            An Amazon S3 Bucket name.

          • key — (String)

            An Amazon S3 key for the ephemeris.

          • version — (String)

            For versioned S3 objects, the version to use for the ephemeris.

        • tleData — (Array<map>)

          The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.

          • tleLine1required — (String)

            First line of two-line element set (TLE) data.

          • tleLine2required — (String)

            Second line of two-line element set (TLE) data.

          • validTimeRangerequired — (map)

            The valid time range for the TLE. Gaps or overlap are not permitted.

            • endTimerequired — (Date)

              Time in UTC at which the time range ends.

            • startTimerequired — (Date)

              Time in UTC at which the time range starts.

    • expirationTime — (Date)

      An overall expiration time for the ephemeris in UTC, after which it will become EXPIRED.

    • kmsKeyArn — (String)

      The ARN of a KMS key used to encrypt the ephemeris in Ground Station.

    • name — (String)

      A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.

    • priority — (Integer)

      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

    • satelliteId — (String)

      AWS Ground Station satellite ID for this ephemeris.

    • tags — (map<String>)

      Tags assigned to an ephemeris.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ephemerisId — (String)

        The AWS Ground Station ephemeris ID.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createMissionProfile(params = {}, callback) ⇒ AWS.Request

Creates a mission profile.

dataflowEdges is a list of lists of strings. Each lower level list of strings has two elements: a from ARN and a to ARN.

Service Reference:

Examples:

Calling the createMissionProfile operation

var params = {
  dataflowEdges: [ /* required */
    [
      'STRING_VALUE',
      /* more items */
    ],
    /* more items */
  ],
  minimumViableContactDurationSeconds: 'NUMBER_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  trackingConfigArn: 'STRING_VALUE', /* required */
  contactPostPassDurationSeconds: 'NUMBER_VALUE',
  contactPrePassDurationSeconds: 'NUMBER_VALUE',
  streamsKmsKey: {
    kmsAliasArn: 'STRING_VALUE',
    kmsAliasName: 'STRING_VALUE',
    kmsKeyArn: 'STRING_VALUE'
  },
  streamsKmsRole: 'STRING_VALUE',
  tags: {
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.createMissionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • contactPostPassDurationSeconds — (Integer)

      Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

    • contactPrePassDurationSeconds — (Integer)

      Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

    • dataflowEdges — (Array<Array<String>>)

      A list of lists of ARNs. Each list of ARNs is an edge, with a from Config and a to Config.

    • minimumViableContactDurationSeconds — (Integer)

      Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.

    • name — (String)

      Name of a mission profile.

    • streamsKmsKey — (map)

      KMS key to use for encrypting streams.

      • kmsAliasArn — (String)

        KMS Alias Arn.

      • kmsAliasName — (String)

        KMS Alias Name.

      • kmsKeyArn — (String)

        KMS Key Arn.

    • streamsKmsRole — (String)

      Role to use for encrypting streams with KMS key.

    • tags — (map<String>)

      Tags assigned to a mission profile.

    • trackingConfigArn — (String)

      ARN of a tracking Config.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • missionProfileId — (String)

        UUID of a mission profile.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteConfig(params = {}, callback) ⇒ AWS.Request

Deletes a Config.

Service Reference:

Examples:

Calling the deleteConfig operation

var params = {
  configId: 'STRING_VALUE', /* required */
  configType: antenna-downlink | antenna-downlink-demod-decode | antenna-uplink | dataflow-endpoint | tracking | uplink-echo | s3-recording /* required */
};
groundstation.deleteConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • configId — (String)

      UUID of a Config.

    • configType — (String)

      Type of a Config.

      Possible values include:
      • "antenna-downlink"
      • "antenna-downlink-demod-decode"
      • "antenna-uplink"
      • "dataflow-endpoint"
      • "tracking"
      • "uplink-echo"
      • "s3-recording"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • configArn — (String)

        ARN of a Config.

      • configId — (String)

        UUID of a Config.

      • configType — (String)

        Type of a Config.

        Possible values include:
        • "antenna-downlink"
        • "antenna-downlink-demod-decode"
        • "antenna-uplink"
        • "dataflow-endpoint"
        • "tracking"
        • "uplink-echo"
        • "s3-recording"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteDataflowEndpointGroup(params = {}, callback) ⇒ AWS.Request

Deletes a dataflow endpoint group.

Service Reference:

Examples:

Calling the deleteDataflowEndpointGroup operation

var params = {
  dataflowEndpointGroupId: 'STRING_VALUE' /* required */
};
groundstation.deleteDataflowEndpointGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • dataflowEndpointGroupId — (String)

      UUID of a dataflow endpoint group.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • dataflowEndpointGroupId — (String)

        UUID of a dataflow endpoint group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteEphemeris(params = {}, callback) ⇒ AWS.Request

Deletes an ephemeris

Service Reference:

Examples:

Calling the deleteEphemeris operation

var params = {
  ephemerisId: 'STRING_VALUE' /* required */
};
groundstation.deleteEphemeris(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ephemerisId — (String)

      The AWS Ground Station ephemeris ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ephemerisId — (String)

        The AWS Ground Station ephemeris ID.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteMissionProfile(params = {}, callback) ⇒ AWS.Request

Deletes a mission profile.

Service Reference:

Examples:

Calling the deleteMissionProfile operation

var params = {
  missionProfileId: 'STRING_VALUE' /* required */
};
groundstation.deleteMissionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • missionProfileId — (String)

      UUID of a mission profile.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • missionProfileId — (String)

        UUID of a mission profile.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeContact(params = {}, callback) ⇒ AWS.Request

Describes an existing contact.

Service Reference:

Examples:

Calling the describeContact operation

var params = {
  contactId: 'STRING_VALUE' /* required */
};
groundstation.describeContact(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • contactId — (String)

      UUID of a contact.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactId — (String)

        UUID of a contact.

      • contactStatus — (String)

        Status of a contact.

        Possible values include:
        • "AVAILABLE"
        • "AWS_CANCELLED"
        • "AWS_FAILED"
        • "CANCELLED"
        • "CANCELLING"
        • "COMPLETED"
        • "FAILED"
        • "FAILED_TO_SCHEDULE"
        • "PASS"
        • "POSTPASS"
        • "PREPASS"
        • "SCHEDULED"
        • "SCHEDULING"
      • dataflowList — (Array<map>)

        List describing source and destination details for each dataflow edge.

        • destination — (map)

          Dataflow details for the destination side.

          • configDetails — (map)

            Additional details for a Config, if type is dataflow endpoint or antenna demod decode.

            • antennaDemodDecodeDetails — (map)

              Details for antenna demod decode Config in a contact.

              • outputNode — (String)

                Name of an antenna demod decode output node used in a contact.

            • endpointDetails — (map)

              Information about the endpoint details.

              • awsGroundStationAgentEndpoint — (map)

                An agent endpoint.

                • agentStatus — (String)

                  The status of AgentEndpoint.

                  Possible values include:
                  • "SUCCESS"
                  • "FAILED"
                  • "ACTIVE"
                  • "INACTIVE"
                • auditResults — (String)

                  The results of the audit.

                  Possible values include:
                  • "HEALTHY"
                  • "UNHEALTHY"
                • egressAddressrequired — (map)

                  The egress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A socket address.

                    • namerequired — (String)

                      Name of a socket address.

                    • portrequired — (Integer)

                      Port of a socket address.

                • ingressAddressrequired — (map)

                  The ingress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A ranged socket address.

                    • namerequired — (String)

                      IPv4 socket address.

                    • portRangerequired — (map)

                      Port range of a socket address.

                      • maximumrequired — (Integer)

                        A maximum value.

                      • minimumrequired — (Integer)

                        A minimum value.

                • namerequired — (String)

                  Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

              • endpoint — (map)

                A dataflow endpoint.

                • address — (map)

                  Socket address of a dataflow endpoint.

                  • namerequired — (String)

                    Name of a socket address.

                  • portrequired — (Integer)

                    Port of a socket address.

                • mtu — (Integer)

                  Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                • name — (String)

                  Name of a dataflow endpoint.

                • status — (String)

                  Status of a dataflow endpoint.

                  Possible values include:
                  • "created"
                  • "creating"
                  • "deleted"
                  • "deleting"
                  • "failed"
              • healthReasons — (Array<String>)

                Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

              • healthStatus — (String)

                A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

                Possible values include:
                • "UNHEALTHY"
                • "HEALTHY"
              • securityDetails — (map)

                Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

                • roleArnrequired — (String)

                  ARN to a role needed for connecting streams to your instances.

                • securityGroupIdsrequired — (Array<String>)

                  The security groups to attach to the elastic network interfaces.

                • subnetIdsrequired — (Array<String>)

                  A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

            • s3RecordingDetails — (map)

              Details for an S3 recording Config in a contact.

              • bucketArn — (String)

                ARN of the bucket used.

              • keyTemplate — (String)

                Key template used for the S3 Recording Configuration

          • configId — (String)

            UUID of a Config.

          • configType — (String)

            Type of a Config.

            Possible values include:
            • "antenna-downlink"
            • "antenna-downlink-demod-decode"
            • "antenna-uplink"
            • "dataflow-endpoint"
            • "tracking"
            • "uplink-echo"
            • "s3-recording"
          • dataflowDestinationRegion — (String)

            Region of a dataflow destination.

        • errorMessage — (String)

          Error message for a dataflow.

        • source — (map)

          Dataflow details for the source side.

          • configDetails — (map)

            Additional details for a Config, if type is dataflow-endpoint or antenna-downlink-demod-decode

            • antennaDemodDecodeDetails — (map)

              Details for antenna demod decode Config in a contact.

              • outputNode — (String)

                Name of an antenna demod decode output node used in a contact.

            • endpointDetails — (map)

              Information about the endpoint details.

              • awsGroundStationAgentEndpoint — (map)

                An agent endpoint.

                • agentStatus — (String)

                  The status of AgentEndpoint.

                  Possible values include:
                  • "SUCCESS"
                  • "FAILED"
                  • "ACTIVE"
                  • "INACTIVE"
                • auditResults — (String)

                  The results of the audit.

                  Possible values include:
                  • "HEALTHY"
                  • "UNHEALTHY"
                • egressAddressrequired — (map)

                  The egress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A socket address.

                    • namerequired — (String)

                      Name of a socket address.

                    • portrequired — (Integer)

                      Port of a socket address.

                • ingressAddressrequired — (map)

                  The ingress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A ranged socket address.

                    • namerequired — (String)

                      IPv4 socket address.

                    • portRangerequired — (map)

                      Port range of a socket address.

                      • maximumrequired — (Integer)

                        A maximum value.

                      • minimumrequired — (Integer)

                        A minimum value.

                • namerequired — (String)

                  Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

              • endpoint — (map)

                A dataflow endpoint.

                • address — (map)

                  Socket address of a dataflow endpoint.

                  • namerequired — (String)

                    Name of a socket address.

                  • portrequired — (Integer)

                    Port of a socket address.

                • mtu — (Integer)

                  Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                • name — (String)

                  Name of a dataflow endpoint.

                • status — (String)

                  Status of a dataflow endpoint.

                  Possible values include:
                  • "created"
                  • "creating"
                  • "deleted"
                  • "deleting"
                  • "failed"
              • healthReasons — (Array<String>)

                Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

              • healthStatus — (String)

                A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

                Possible values include:
                • "UNHEALTHY"
                • "HEALTHY"
              • securityDetails — (map)

                Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

                • roleArnrequired — (String)

                  ARN to a role needed for connecting streams to your instances.

                • securityGroupIdsrequired — (Array<String>)

                  The security groups to attach to the elastic network interfaces.

                • subnetIdsrequired — (Array<String>)

                  A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

            • s3RecordingDetails — (map)

              Details for an S3 recording Config in a contact.

              • bucketArn — (String)

                ARN of the bucket used.

              • keyTemplate — (String)

                Key template used for the S3 Recording Configuration

          • configId — (String)

            UUID of a Config.

          • configType — (String)

            Type of a Config.

            Possible values include:
            • "antenna-downlink"
            • "antenna-downlink-demod-decode"
            • "antenna-uplink"
            • "dataflow-endpoint"
            • "tracking"
            • "uplink-echo"
            • "s3-recording"
          • dataflowSourceRegion — (String)

            Region of a dataflow source.

      • endTime — (Date)

        End time of a contact in UTC.

      • errorMessage — (String)

        Error message for a contact.

      • groundStation — (String)

        Ground station for a contact.

      • maximumElevation — (map)

        Maximum elevation angle of a contact.

        • unitrequired — (String)

          Elevation angle units.

          Possible values include:
          • "DEGREE_ANGLE"
          • "RADIAN"
        • valuerequired — (Float)

          Elevation angle value.

      • missionProfileArn — (String)

        ARN of a mission profile.

      • postPassEndTime — (Date)

        Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

      • prePassStartTime — (Date)

        Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

      • region — (String)

        Region of a contact.

      • satelliteArn — (String)

        ARN of a satellite.

      • startTime — (Date)

        Start time of a contact in UTC.

      • tags — (map<String>)

        Tags assigned to a contact.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

describeEphemeris(params = {}, callback) ⇒ AWS.Request

Describes an existing ephemeris.

Service Reference:

Examples:

Calling the describeEphemeris operation

var params = {
  ephemerisId: 'STRING_VALUE' /* required */
};
groundstation.describeEphemeris(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ephemerisId — (String)

      The AWS Ground Station ephemeris ID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • creationTime — (Date)

        The time the ephemeris was uploaded in UTC.

      • enabled — (Boolean)

        Whether or not the ephemeris is enabled.

      • ephemerisId — (String)

        The AWS Ground Station ephemeris ID.

      • invalidReason — (String)

        Reason that an ephemeris failed validation. Only provided for ephemerides with INVALID status.

        Possible values include:
        • "METADATA_INVALID"
        • "TIME_RANGE_INVALID"
        • "TRAJECTORY_INVALID"
        • "KMS_KEY_INVALID"
        • "VALIDATION_ERROR"
      • name — (String)

        A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.

      • priority — (Integer)

        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

      • satelliteId — (String)

        The AWS Ground Station satellite ID associated with ephemeris.

      • status — (String)

        The status of the ephemeris.

        Possible values include:
        • "VALIDATING"
        • "INVALID"
        • "ERROR"
        • "ENABLED"
        • "DISABLED"
        • "EXPIRED"
      • suppliedData — (map)

        Supplied ephemeris data.

        • oem — (map)

          Description of ephemeris.

          • ephemerisData — (String)

            Supplied ephemeris data.

          • sourceS3Object — (map)

            Source S3 object used for the ephemeris.

            • bucket — (String)

              An Amazon S3 Bucket name.

            • key — (String)

              An Amazon S3 key for the ephemeris.

            • version — (String)

              For versioned S3 objects, the version to use for the ephemeris.

        • tle — (map)

          Description of ephemeris.

          • ephemerisData — (String)

            Supplied ephemeris data.

          • sourceS3Object — (map)

            Source S3 object used for the ephemeris.

            • bucket — (String)

              An Amazon S3 Bucket name.

            • key — (String)

              An Amazon S3 key for the ephemeris.

            • version — (String)

              For versioned S3 objects, the version to use for the ephemeris.

      • tags — (map<String>)

        Tags assigned to an ephemeris.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getAgentConfiguration(params = {}, callback) ⇒ AWS.Request

Note: For use by AWS Ground Station Agent and shouldn't be called directly.

Gets the latest configuration information for a registered agent.

Service Reference:

Examples:

Calling the getAgentConfiguration operation

var params = {
  agentId: 'STRING_VALUE' /* required */
};
groundstation.getAgentConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • agentId — (String)

      UUID of agent to get configuration information for.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • agentId — (String)

        UUID of agent.

      • taskingDocument — (String)

        Tasking document for agent.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getConfig(params = {}, callback) ⇒ AWS.Request

Returns Config information.

Only one Config response can be returned.

Service Reference:

Examples:

Calling the getConfig operation

var params = {
  configId: 'STRING_VALUE', /* required */
  configType: antenna-downlink | antenna-downlink-demod-decode | antenna-uplink | dataflow-endpoint | tracking | uplink-echo | s3-recording /* required */
};
groundstation.getConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • configId — (String)

      UUID of a Config.

    • configType — (String)

      Type of a Config.

      Possible values include:
      • "antenna-downlink"
      • "antenna-downlink-demod-decode"
      • "antenna-uplink"
      • "dataflow-endpoint"
      • "tracking"
      • "uplink-echo"
      • "s3-recording"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • configArn — (String)

        ARN of a Config

      • configData — (map)

        Data elements in a Config.

        • antennaDownlinkConfig — (map)

          Information about how AWS Ground Station should configure an antenna for downlink during a contact.

          • spectrumConfigrequired — (map)

            Object that describes a spectral Config.

            • bandwidthrequired — (map)

              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.

              • unitsrequired — (String)

                Frequency bandwidth units.

                Possible values include:
                • "GHz"
                • "MHz"
                • "kHz"
              • valuerequired — (Float)

                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.

            • centerFrequencyrequired — (map)

              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.

              • unitsrequired — (String)

                Frequency units.

                Possible values include:
                • "GHz"
                • "MHz"
                • "kHz"
              • valuerequired — (Float)

                Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

            • polarization — (String)

              Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

              Possible values include:
              • "LEFT_HAND"
              • "NONE"
              • "RIGHT_HAND"
        • antennaDownlinkDemodDecodeConfig — (map)

          Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.

          • decodeConfigrequired — (map)

            Information about the decode Config.

            • unvalidatedJSONrequired — (String)

              Unvalidated JSON of a decode Config.

          • demodulationConfigrequired — (map)

            Information about the demodulation Config.

            • unvalidatedJSONrequired — (String)

              Unvalidated JSON of a demodulation Config.

          • spectrumConfigrequired — (map)

            Information about the spectral Config.

            • bandwidthrequired — (map)

              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.

              • unitsrequired — (String)

                Frequency bandwidth units.

                Possible values include:
                • "GHz"
                • "MHz"
                • "kHz"
              • valuerequired — (Float)

                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.

            • centerFrequencyrequired — (map)

              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.

              • unitsrequired — (String)

                Frequency units.

                Possible values include:
                • "GHz"
                • "MHz"
                • "kHz"
              • valuerequired — (Float)

                Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

            • polarization — (String)

              Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

              Possible values include:
              • "LEFT_HAND"
              • "NONE"
              • "RIGHT_HAND"
        • antennaUplinkConfig — (map)

          Information about how AWS Ground Station should configure an antenna for uplink during a contact.

          • spectrumConfigrequired — (map)

            Information about the uplink spectral Config.

            • centerFrequencyrequired — (map)

              Center frequency of an uplink spectral Config. Valid values are between 2025 to 2120 MHz.

              • unitsrequired — (String)

                Frequency units.

                Possible values include:
                • "GHz"
                • "MHz"
                • "kHz"
              • valuerequired — (Float)

                Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

            • polarization — (String)

              Polarization of an uplink spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

              Possible values include:
              • "LEFT_HAND"
              • "NONE"
              • "RIGHT_HAND"
          • targetEirprequired — (map)

            EIRP of the target.

            • unitsrequired — (String)

              Units of an EIRP.

              Possible values include:
              • "dBW"
            • valuerequired — (Float)

              Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.

          • transmitDisabled — (Boolean)

            Whether or not uplink transmit is disabled.

        • dataflowEndpointConfig — (map)

          Information about the dataflow endpoint Config.

          • dataflowEndpointNamerequired — (String)

            Name of a dataflow endpoint.

          • dataflowEndpointRegion — (String)

            Region of a dataflow endpoint.

        • s3RecordingConfig — (map)

          Information about an S3 recording Config.

          • bucketArnrequired — (String)

            ARN of the bucket to record to.

          • prefix — (String)

            S3 Key prefix to prefice data files.

          • roleArnrequired — (String)

            ARN of the role Ground Station assumes to write data to the bucket.

        • trackingConfig — (map)

          Object that determines whether tracking should be used during a contact executed with this Config in the mission profile.

          • autotrackrequired — (String)

            Current setting for autotrack.

            Possible values include:
            • "PREFERRED"
            • "REMOVED"
            • "REQUIRED"
        • uplinkEchoConfig — (map)

          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.

          • antennaUplinkConfigArnrequired — (String)

            ARN of an uplink Config.

          • enabledrequired — (Boolean)

            Whether or not an uplink Config is enabled.

      • configId — (String)

        UUID of a Config.

      • configType — (String)

        Type of a Config.

        Possible values include:
        • "antenna-downlink"
        • "antenna-downlink-demod-decode"
        • "antenna-uplink"
        • "dataflow-endpoint"
        • "tracking"
        • "uplink-echo"
        • "s3-recording"
      • name — (String)

        Name of a Config.

      • tags — (map<String>)

        Tags assigned to a Config.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getDataflowEndpointGroup(params = {}, callback) ⇒ AWS.Request

Returns the dataflow endpoint group.

Service Reference:

Examples:

Calling the getDataflowEndpointGroup operation

var params = {
  dataflowEndpointGroupId: 'STRING_VALUE' /* required */
};
groundstation.getDataflowEndpointGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • dataflowEndpointGroupId — (String)

      UUID of a dataflow endpoint group.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactPostPassDurationSeconds — (Integer)

        Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.

      • contactPrePassDurationSeconds — (Integer)

        Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.

      • dataflowEndpointGroupArn — (String)

        ARN of a dataflow endpoint group.

      • dataflowEndpointGroupId — (String)

        UUID of a dataflow endpoint group.

      • endpointsDetails — (Array<map>)

        Details of a dataflow endpoint.

        • awsGroundStationAgentEndpoint — (map)

          An agent endpoint.

          • agentStatus — (String)

            The status of AgentEndpoint.

            Possible values include:
            • "SUCCESS"
            • "FAILED"
            • "ACTIVE"
            • "INACTIVE"
          • auditResults — (String)

            The results of the audit.

            Possible values include:
            • "HEALTHY"
            • "UNHEALTHY"
          • egressAddressrequired — (map)

            The egress address of AgentEndpoint.

            • mtu — (Integer)

              Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

            • socketAddressrequired — (map)

              A socket address.

              • namerequired — (String)

                Name of a socket address.

              • portrequired — (Integer)

                Port of a socket address.

          • ingressAddressrequired — (map)

            The ingress address of AgentEndpoint.

            • mtu — (Integer)

              Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

            • socketAddressrequired — (map)

              A ranged socket address.

              • namerequired — (String)

                IPv4 socket address.

              • portRangerequired — (map)

                Port range of a socket address.

                • maximumrequired — (Integer)

                  A maximum value.

                • minimumrequired — (Integer)

                  A minimum value.

          • namerequired — (String)

            Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

        • endpoint — (map)

          A dataflow endpoint.

          • address — (map)

            Socket address of a dataflow endpoint.

            • namerequired — (String)

              Name of a socket address.

            • portrequired — (Integer)

              Port of a socket address.

          • mtu — (Integer)

            Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

          • name — (String)

            Name of a dataflow endpoint.

          • status — (String)

            Status of a dataflow endpoint.

            Possible values include:
            • "created"
            • "creating"
            • "deleted"
            • "deleting"
            • "failed"
        • healthReasons — (Array<String>)

          Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

        • healthStatus — (String)

          A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

          Possible values include:
          • "UNHEALTHY"
          • "HEALTHY"
        • securityDetails — (map)

          Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

          • roleArnrequired — (String)

            ARN to a role needed for connecting streams to your instances.

          • securityGroupIdsrequired — (Array<String>)

            The security groups to attach to the elastic network interfaces.

          • subnetIdsrequired — (Array<String>)

            A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

      • tags — (map<String>)

        Tags assigned to a dataflow endpoint group.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMinuteUsage(params = {}, callback) ⇒ AWS.Request

Returns the number of reserved minutes used by account.

Service Reference:

Examples:

Calling the getMinuteUsage operation

var params = {
  month: 'NUMBER_VALUE', /* required */
  year: 'NUMBER_VALUE' /* required */
};
groundstation.getMinuteUsage(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • month — (Integer)

      The month being requested, with a value of 1-12.

    • year — (Integer)

      The year being requested, in the format of YYYY.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • estimatedMinutesRemaining — (Integer)

        Estimated number of minutes remaining for an account, specific to the month being requested.

      • isReservedMinutesCustomer — (Boolean)

        Returns whether or not an account has signed up for the reserved minutes pricing plan, specific to the month being requested.

      • totalReservedMinuteAllocation — (Integer)

        Total number of reserved minutes allocated, specific to the month being requested.

      • totalScheduledMinutes — (Integer)

        Total scheduled minutes for an account, specific to the month being requested.

      • upcomingMinutesScheduled — (Integer)

        Upcoming minutes scheduled for an account, specific to the month being requested.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getMissionProfile(params = {}, callback) ⇒ AWS.Request

Returns a mission profile.

Service Reference:

Examples:

Calling the getMissionProfile operation

var params = {
  missionProfileId: 'STRING_VALUE' /* required */
};
groundstation.getMissionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • missionProfileId — (String)

      UUID of a mission profile.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactPostPassDurationSeconds — (Integer)

        Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

      • contactPrePassDurationSeconds — (Integer)

        Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

      • dataflowEdges — (Array<Array<String>>)

        A list of lists of ARNs. Each list of ARNs is an edge, with a from Config and a to Config.

      • minimumViableContactDurationSeconds — (Integer)

        Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.

      • missionProfileArn — (String)

        ARN of a mission profile.

      • missionProfileId — (String)

        UUID of a mission profile.

      • name — (String)

        Name of a mission profile.

      • region — (String)

        Region of a mission profile.

      • streamsKmsKey — (map)

        KMS key to use for encrypting streams.

        • kmsAliasArn — (String)

          KMS Alias Arn.

        • kmsAliasName — (String)

          KMS Alias Name.

        • kmsKeyArn — (String)

          KMS Key Arn.

      • streamsKmsRole — (String)

        Role to use for encrypting streams with KMS key.

      • tags — (map<String>)

        Tags assigned to a mission profile.

      • trackingConfigArn — (String)

        ARN of a tracking Config.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

getSatellite(params = {}, callback) ⇒ AWS.Request

Returns a satellite.

Service Reference:

Examples:

Calling the getSatellite operation

var params = {
  satelliteId: 'STRING_VALUE' /* required */
};
groundstation.getSatellite(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • satelliteId — (String)

      UUID of a satellite.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • currentEphemeris — (map)

        The current ephemeris being used to compute the trajectory of the satellite.

        • ephemerisId — (String)

          UUID of a customer-provided ephemeris.

          This field is not populated for default ephemerides from Space Track.

        • epoch — (Date)

          The epoch of a default, ephemeris from Space Track in UTC.

          This field is not populated for customer-provided ephemerides.

        • name — (String)

          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.

        • sourcerequired — (String)

          The EphemerisSource that generated a given ephemeris.

          Possible values include:
          • "CUSTOMER_PROVIDED"
          • "SPACE_TRACK"
      • groundStations — (Array<String>)

        A list of ground stations to which the satellite is on-boarded.

      • noradSatelliteID — (Integer)

        NORAD satellite ID number.

      • satelliteArn — (String)

        ARN of a satellite.

      • satelliteId — (String)

        UUID of a satellite.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listConfigs(params = {}, callback) ⇒ AWS.Request

Returns a list of Config objects.

Service Reference:

Examples:

Calling the listConfigs operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
groundstation.listConfigs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • maxResults — (Integer)

      Maximum number of Configs returned.

    • nextToken — (String)

      Next token returned in the request of a previous ListConfigs call. Used to get the next page of results.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • configList — (Array<map>)

        List of Config items.

        • configArn — (String)

          ARN of a Config.

        • configId — (String)

          UUID of a Config.

        • configType — (String)

          Type of a Config.

          Possible values include:
          • "antenna-downlink"
          • "antenna-downlink-demod-decode"
          • "antenna-uplink"
          • "dataflow-endpoint"
          • "tracking"
          • "uplink-echo"
          • "s3-recording"
        • name — (String)

          Name of a Config.

      • nextToken — (String)

        Next token returned in the response of a previous ListConfigs call. Used to get the next page of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listContacts(params = {}, callback) ⇒ AWS.Request

Returns a list of contacts.

If statusList contains AVAILABLE, the request must include groundStation, missionprofileArn, and satelliteArn.

Service Reference:

Examples:

Calling the listContacts operation

var params = {
  endTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  startTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  statusList: [ /* required */
    AVAILABLE | AWS_CANCELLED | AWS_FAILED | CANCELLED | CANCELLING | COMPLETED | FAILED | FAILED_TO_SCHEDULE | PASS | POSTPASS | PREPASS | SCHEDULED | SCHEDULING,
    /* more items */
  ],
  groundStation: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  missionProfileArn: 'STRING_VALUE',
  nextToken: 'STRING_VALUE',
  satelliteArn: 'STRING_VALUE'
};
groundstation.listContacts(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • endTime — (Date)

      End time of a contact in UTC.

    • groundStation — (String)

      Name of a ground station.

    • maxResults — (Integer)

      Maximum number of contacts returned.

    • missionProfileArn — (String)

      ARN of a mission profile.

    • nextToken — (String)

      Next token returned in the request of a previous ListContacts call. Used to get the next page of results.

    • satelliteArn — (String)

      ARN of a satellite.

    • startTime — (Date)

      Start time of a contact in UTC.

    • statusList — (Array<String>)

      Status of a contact reservation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactList — (Array<map>)

        List of contacts.

        • contactId — (String)

          UUID of a contact.

        • contactStatus — (String)

          Status of a contact.

          Possible values include:
          • "AVAILABLE"
          • "AWS_CANCELLED"
          • "AWS_FAILED"
          • "CANCELLED"
          • "CANCELLING"
          • "COMPLETED"
          • "FAILED"
          • "FAILED_TO_SCHEDULE"
          • "PASS"
          • "POSTPASS"
          • "PREPASS"
          • "SCHEDULED"
          • "SCHEDULING"
        • endTime — (Date)

          End time of a contact in UTC.

        • errorMessage — (String)

          Error message of a contact.

        • groundStation — (String)

          Name of a ground station.

        • maximumElevation — (map)

          Maximum elevation angle of a contact.

          • unitrequired — (String)

            Elevation angle units.

            Possible values include:
            • "DEGREE_ANGLE"
            • "RADIAN"
          • valuerequired — (Float)

            Elevation angle value.

        • missionProfileArn — (String)

          ARN of a mission profile.

        • postPassEndTime — (Date)

          Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

        • prePassStartTime — (Date)

          Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

        • region — (String)

          Region of a contact.

        • satelliteArn — (String)

          ARN of a satellite.

        • startTime — (Date)

          Start time of a contact in UTC.

        • tags — (map<String>)

          Tags assigned to a contact.

      • nextToken — (String)

        Next token returned in the response of a previous ListContacts call. Used to get the next page of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDataflowEndpointGroups(params = {}, callback) ⇒ AWS.Request

Returns a list of DataflowEndpoint groups.

Service Reference:

Examples:

Calling the listDataflowEndpointGroups operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
groundstation.listDataflowEndpointGroups(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • maxResults — (Integer)

      Maximum number of dataflow endpoint groups returned.

    • nextToken — (String)

      Next token returned in the request of a previous ListDataflowEndpointGroups call. Used to get the next page of results.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • dataflowEndpointGroupList — (Array<map>)

        A list of dataflow endpoint groups.

        • dataflowEndpointGroupArn — (String)

          ARN of a dataflow endpoint group.

        • dataflowEndpointGroupId — (String)

          UUID of a dataflow endpoint group.

      • nextToken — (String)

        Next token returned in the response of a previous ListDataflowEndpointGroups call. Used to get the next page of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listEphemerides(params = {}, callback) ⇒ AWS.Request

List existing ephemerides.

Service Reference:

Examples:

Calling the listEphemerides operation

var params = {
  endTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  satelliteId: 'STRING_VALUE', /* required */
  startTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  statusList: [
    VALIDATING | INVALID | ERROR | ENABLED | DISABLED | EXPIRED,
    /* more items */
  ]
};
groundstation.listEphemerides(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • endTime — (Date)

      The end time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime.

    • maxResults — (Integer)

      Maximum number of ephemerides to return.

    • nextToken — (String)

      Pagination token.

    • satelliteId — (String)

      The AWS Ground Station satellite ID to list ephemeris for.

    • startTime — (Date)

      The start time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime.

    • statusList — (Array<String>)

      The list of ephemeris status to return.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ephemerides — (Array<map>)

        List of ephemerides.

        • creationTime — (Date)

          The time the ephemeris was uploaded in UTC.

        • enabled — (Boolean)

          Whether or not the ephemeris is enabled.

        • ephemerisId — (String)

          The AWS Ground Station ephemeris ID.

        • name — (String)

          A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.

        • priority — (Integer)

          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

        • sourceS3Object — (map)

          Source S3 object used for the ephemeris.

          • bucket — (String)

            An Amazon S3 Bucket name.

          • key — (String)

            An Amazon S3 key for the ephemeris.

          • version — (String)

            For versioned S3 objects, the version to use for the ephemeris.

        • status — (String)

          The status of the ephemeris.

          Possible values include:
          • "VALIDATING"
          • "INVALID"
          • "ERROR"
          • "ENABLED"
          • "DISABLED"
          • "EXPIRED"
      • nextToken — (String)

        Pagination token.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listGroundStations(params = {}, callback) ⇒ AWS.Request

Returns a list of ground stations.

Service Reference:

Examples:

Calling the listGroundStations operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  satelliteId: 'STRING_VALUE'
};
groundstation.listGroundStations(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • maxResults — (Integer)

      Maximum number of ground stations returned.

    • nextToken — (String)

      Next token that can be supplied in the next call to get the next page of ground stations.

    • satelliteId — (String)

      Satellite ID to retrieve on-boarded ground stations.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • groundStationList — (Array<map>)

        List of ground stations.

        • groundStationId — (String)

          UUID of a ground station.

        • groundStationName — (String)

          Name of a ground station.

        • region — (String)

          Ground station Region.

      • nextToken — (String)

        Next token that can be supplied in the next call to get the next page of ground stations.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listMissionProfiles(params = {}, callback) ⇒ AWS.Request

Returns a list of mission profiles.

Service Reference:

Examples:

Calling the listMissionProfiles operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
groundstation.listMissionProfiles(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • maxResults — (Integer)

      Maximum number of mission profiles returned.

    • nextToken — (String)

      Next token returned in the request of a previous ListMissionProfiles call. Used to get the next page of results.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • missionProfileList — (Array<map>)

        List of mission profiles.

        • missionProfileArn — (String)

          ARN of a mission profile.

        • missionProfileId — (String)

          UUID of a mission profile.

        • name — (String)

          Name of a mission profile.

        • region — (String)

          Region of a mission profile.

      • nextToken — (String)

        Next token returned in the response of a previous ListMissionProfiles call. Used to get the next page of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listSatellites(params = {}, callback) ⇒ AWS.Request

Returns a list of satellites.

Service Reference:

Examples:

Calling the listSatellites operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
groundstation.listSatellites(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • maxResults — (Integer)

      Maximum number of satellites returned.

    • nextToken — (String)

      Next token that can be supplied in the next call to get the next page of satellites.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • nextToken — (String)

        Next token that can be supplied in the next call to get the next page of satellites.

      • satellites — (Array<map>)

        List of satellites.

        • currentEphemeris — (map)

          The current ephemeris being used to compute the trajectory of the satellite.

          • ephemerisId — (String)

            UUID of a customer-provided ephemeris.

            This field is not populated for default ephemerides from Space Track.

          • epoch — (Date)

            The epoch of a default, ephemeris from Space Track in UTC.

            This field is not populated for customer-provided ephemerides.

          • name — (String)

            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.

          • sourcerequired — (String)

            The EphemerisSource that generated a given ephemeris.

            Possible values include:
            • "CUSTOMER_PROVIDED"
            • "SPACE_TRACK"
        • groundStations — (Array<String>)

          A list of ground stations to which the satellite is on-boarded.

        • noradSatelliteID — (Integer)

          NORAD satellite ID number.

        • satelliteArn — (String)

          ARN of a satellite.

        • satelliteId — (String)

          UUID of a satellite.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTagsForResource(params = {}, callback) ⇒ AWS.Request

Returns a list of tags for a specified resource.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  resourceArn: 'STRING_VALUE' /* required */
};
groundstation.listTagsForResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • resourceArn — (String)

      ARN of a resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • tags — (map<String>)

        Tags assigned to a resource.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

registerAgent(params = {}, callback) ⇒ AWS.Request

Note: For use by AWS Ground Station Agent and shouldn't be called directly.

Registers a new agent with AWS Ground Station.

Service Reference:

Examples:

Calling the registerAgent operation

var params = {
  agentDetails: { /* required */
    agentVersion: 'STRING_VALUE', /* required */
    componentVersions: [ /* required */
      {
        componentType: 'STRING_VALUE', /* required */
        versions: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      },
      /* more items */
    ],
    instanceId: 'STRING_VALUE', /* required */
    instanceType: 'STRING_VALUE', /* required */
    agentCpuCores: [
      'NUMBER_VALUE',
      /* more items */
    ],
    reservedCpuCores: [
      'NUMBER_VALUE',
      /* more items */
    ]
  },
  discoveryData: { /* required */
    capabilityArns: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    privateIpAddresses: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    publicIpAddresses: [ /* required */
      'STRING_VALUE',
      /* more items */
    ]
  }
};
groundstation.registerAgent(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • agentDetails — (map)

      Detailed information about the agent being registered.

      • agentCpuCores — (Array<Integer>)

        List of CPU cores reserved for the agent.

      • agentVersionrequired — (String)

        Current agent version.

      • componentVersionsrequired — (Array<map>)

        List of versions being used by agent components.

        • componentTyperequired — (String)

          Component type.

        • versionsrequired — (Array<String>)

          List of versions.

      • instanceIdrequired — (String)

        ID of EC2 instance agent is running on.

      • instanceTyperequired — (String)

        Type of EC2 instance agent is running on.

      • reservedCpuCores — (Array<Integer>)
        Note: 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.

    • discoveryData — (map)

      Data for associating an agent with the capabilities it is managing.

      • capabilityArnsrequired — (Array<String>)

        List of capabilities to associate with agent.

      • privateIpAddressesrequired — (Array<String>)

        List of private IP addresses to associate with agent.

      • publicIpAddressesrequired — (Array<String>)

        List of public IP addresses to associate with agent.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • agentId — (String)

        UUID of registered agent.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

reserveContact(params = {}, callback) ⇒ AWS.Request

Reserves a contact using specified parameters.

Service Reference:

Examples:

Calling the reserveContact operation

var params = {
  endTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  groundStation: 'STRING_VALUE', /* required */
  missionProfileArn: 'STRING_VALUE', /* required */
  satelliteArn: 'STRING_VALUE', /* required */
  startTime: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789, /* required */
  tags: {
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.reserveContact(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • endTime — (Date)

      End time of a contact in UTC.

    • groundStation — (String)

      Name of a ground station.

    • missionProfileArn — (String)

      ARN of a mission profile.

    • satelliteArn — (String)

      ARN of a satellite

    • startTime — (Date)

      Start time of a contact in UTC.

    • tags — (map<String>)

      Tags assigned to a contact.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactId — (String)

        UUID of a contact.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

tagResource(params = {}, callback) ⇒ AWS.Request

Assigns a tag to a resource.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  resourceArn: 'STRING_VALUE', /* required */
  tags: { /* required */
    '<String>': 'STRING_VALUE',
    /* '<String>': ... */
  }
};
groundstation.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • resourceArn — (String)

      ARN of a resource tag.

    • tags — (map<String>)

      Tags assigned to a resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

Deassigns a resource tag.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  resourceArn: 'STRING_VALUE', /* required */
  tagKeys: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
groundstation.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • resourceArn — (String)

      ARN of a resource.

    • tagKeys — (Array<String>)

      Keys of a resource tag.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateAgentStatus(params = {}, callback) ⇒ AWS.Request

Note: For use by AWS Ground Station Agent and shouldn't be called directly.

Update the status of the agent.

Service Reference:

Examples:

Calling the updateAgentStatus operation

var params = {
  agentId: 'STRING_VALUE', /* required */
  aggregateStatus: { /* required */
    status: SUCCESS | FAILED | ACTIVE | INACTIVE, /* required */
    signatureMap: {
      '<String>': true || false,
      /* '<String>': ... */
    }
  },
  componentStatuses: [ /* required */
    {
      capabilityArn: 'STRING_VALUE', /* required */
      componentType: 'STRING_VALUE', /* required */
      dataflowId: 'STRING_VALUE', /* required */
      status: SUCCESS | FAILED | ACTIVE | INACTIVE, /* required */
      bytesReceived: 'NUMBER_VALUE',
      bytesSent: 'NUMBER_VALUE',
      packetsDropped: 'NUMBER_VALUE'
    },
    /* more items */
  ],
  taskId: 'STRING_VALUE' /* required */
};
groundstation.updateAgentStatus(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • agentId — (String)

      UUID of agent to update.

    • aggregateStatus — (map)

      Aggregate status for agent.

      • signatureMap — (map<Boolean>)

        Sparse map of failure signatures.

      • statusrequired — (String)

        Aggregate status.

        Possible values include:
        • "SUCCESS"
        • "FAILED"
        • "ACTIVE"
        • "INACTIVE"
    • componentStatuses — (Array<map>)

      List of component statuses for agent.

      • bytesReceived — (Integer)

        Bytes received by the component.

      • bytesSent — (Integer)

        Bytes sent by the component.

      • capabilityArnrequired — (String)

        Capability ARN of the component.

      • componentTyperequired — (String)

        The Component type.

      • dataflowIdrequired — (String)

        Dataflow UUID associated with the component.

      • packetsDropped — (Integer)

        Packets dropped by component.

      • statusrequired — (String)

        Component status.

        Possible values include:
        • "SUCCESS"
        • "FAILED"
        • "ACTIVE"
        • "INACTIVE"
    • taskId — (String)

      GUID of agent task.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • agentId — (String)

        UUID of updated agent.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateConfig(params = {}, callback) ⇒ AWS.Request

Updates the Config used when scheduling contacts.

Updating a Config will not update the execution parameters for existing future contacts scheduled with this Config.

Service Reference:

Examples:

Calling the updateConfig operation

var params = {
  configData: { /* required */
    antennaDownlinkConfig: {
      spectrumConfig: { /* required */
        bandwidth: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      }
    },
    antennaDownlinkDemodDecodeConfig: {
      decodeConfig: { /* required */
        unvalidatedJSON: 'STRING_VALUE' /* required */
      },
      demodulationConfig: { /* required */
        unvalidatedJSON: 'STRING_VALUE' /* required */
      },
      spectrumConfig: { /* required */
        bandwidth: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      }
    },
    antennaUplinkConfig: {
      spectrumConfig: { /* required */
        centerFrequency: { /* required */
          units: GHz | MHz | kHz, /* required */
          value: 'NUMBER_VALUE' /* required */
        },
        polarization: LEFT_HAND | NONE | RIGHT_HAND
      },
      targetEirp: { /* required */
        units: dBW, /* required */
        value: 'NUMBER_VALUE' /* required */
      },
      transmitDisabled: true || false
    },
    dataflowEndpointConfig: {
      dataflowEndpointName: 'STRING_VALUE', /* required */
      dataflowEndpointRegion: 'STRING_VALUE'
    },
    s3RecordingConfig: {
      bucketArn: 'STRING_VALUE', /* required */
      roleArn: 'STRING_VALUE', /* required */
      prefix: 'STRING_VALUE'
    },
    trackingConfig: {
      autotrack: PREFERRED | REMOVED | REQUIRED /* required */
    },
    uplinkEchoConfig: {
      antennaUplinkConfigArn: 'STRING_VALUE', /* required */
      enabled: true || false /* required */
    }
  },
  configId: 'STRING_VALUE', /* required */
  configType: antenna-downlink | antenna-downlink-demod-decode | antenna-uplink | dataflow-endpoint | tracking | uplink-echo | s3-recording, /* required */
  name: 'STRING_VALUE' /* required */
};
groundstation.updateConfig(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • configData — (map)

      Parameters of a Config.

      • antennaDownlinkConfig — (map)

        Information about how AWS Ground Station should configure an antenna for downlink during a contact.

        • spectrumConfigrequired — (map)

          Object that describes a spectral Config.

          • bandwidthrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency bandwidth units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              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.

          • centerFrequencyrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
      • antennaDownlinkDemodDecodeConfig — (map)

        Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.

        • decodeConfigrequired — (map)

          Information about the decode Config.

          • unvalidatedJSONrequired — (String)

            Unvalidated JSON of a decode Config.

        • demodulationConfigrequired — (map)

          Information about the demodulation Config.

          • unvalidatedJSONrequired — (String)

            Unvalidated JSON of a demodulation Config.

        • spectrumConfigrequired — (map)

          Information about the spectral Config.

          • bandwidthrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency bandwidth units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              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.

          • centerFrequencyrequired — (map)

            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.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
      • antennaUplinkConfig — (map)

        Information about how AWS Ground Station should configure an antenna for uplink during a contact.

        • spectrumConfigrequired — (map)

          Information about the uplink spectral Config.

          • centerFrequencyrequired — (map)

            Center frequency of an uplink spectral Config. Valid values are between 2025 to 2120 MHz.

            • unitsrequired — (String)

              Frequency units.

              Possible values include:
              • "GHz"
              • "MHz"
              • "kHz"
            • valuerequired — (Float)

              Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

          • polarization — (String)

            Polarization of an uplink spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

            Possible values include:
            • "LEFT_HAND"
            • "NONE"
            • "RIGHT_HAND"
        • targetEirprequired — (map)

          EIRP of the target.

          • unitsrequired — (String)

            Units of an EIRP.

            Possible values include:
            • "dBW"
          • valuerequired — (Float)

            Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.

        • transmitDisabled — (Boolean)

          Whether or not uplink transmit is disabled.

      • dataflowEndpointConfig — (map)

        Information about the dataflow endpoint Config.

        • dataflowEndpointNamerequired — (String)

          Name of a dataflow endpoint.

        • dataflowEndpointRegion — (String)

          Region of a dataflow endpoint.

      • s3RecordingConfig — (map)

        Information about an S3 recording Config.

        • bucketArnrequired — (String)

          ARN of the bucket to record to.

        • prefix — (String)

          S3 Key prefix to prefice data files.

        • roleArnrequired — (String)

          ARN of the role Ground Station assumes to write data to the bucket.

      • trackingConfig — (map)

        Object that determines whether tracking should be used during a contact executed with this Config in the mission profile.

        • autotrackrequired — (String)

          Current setting for autotrack.

          Possible values include:
          • "PREFERRED"
          • "REMOVED"
          • "REQUIRED"
      • uplinkEchoConfig — (map)

        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.

        • antennaUplinkConfigArnrequired — (String)

          ARN of an uplink Config.

        • enabledrequired — (Boolean)

          Whether or not an uplink Config is enabled.

    • configId — (String)

      UUID of a Config.

    • configType — (String)

      Type of a Config.

      Possible values include:
      • "antenna-downlink"
      • "antenna-downlink-demod-decode"
      • "antenna-uplink"
      • "dataflow-endpoint"
      • "tracking"
      • "uplink-echo"
      • "s3-recording"
    • name — (String)

      Name of a Config.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • configArn — (String)

        ARN of a Config.

      • configId — (String)

        UUID of a Config.

      • configType — (String)

        Type of a Config.

        Possible values include:
        • "antenna-downlink"
        • "antenna-downlink-demod-decode"
        • "antenna-uplink"
        • "dataflow-endpoint"
        • "tracking"
        • "uplink-echo"
        • "s3-recording"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateEphemeris(params = {}, callback) ⇒ AWS.Request

Updates an existing ephemeris

Service Reference:

Examples:

Calling the updateEphemeris operation

var params = {
  enabled: true || false, /* required */
  ephemerisId: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE',
  priority: 'NUMBER_VALUE'
};
groundstation.updateEphemeris(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • enabled — (Boolean)

      Whether the ephemeris is enabled or not. Changing this value will not require the ephemeris to be re-validated.

    • ephemerisId — (String)

      The AWS Ground Station ephemeris ID.

    • name — (String)

      A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.

    • priority — (Integer)

      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

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ephemerisId — (String)

        The AWS Ground Station ephemeris ID.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateMissionProfile(params = {}, callback) ⇒ AWS.Request

Updates a mission profile.

Updating a mission profile will not update the execution parameters for existing future contacts.

Service Reference:

Examples:

Calling the updateMissionProfile operation

var params = {
  missionProfileId: 'STRING_VALUE', /* required */
  contactPostPassDurationSeconds: 'NUMBER_VALUE',
  contactPrePassDurationSeconds: 'NUMBER_VALUE',
  dataflowEdges: [
    [
      'STRING_VALUE',
      /* more items */
    ],
    /* more items */
  ],
  minimumViableContactDurationSeconds: 'NUMBER_VALUE',
  name: 'STRING_VALUE',
  streamsKmsKey: {
    kmsAliasArn: 'STRING_VALUE',
    kmsAliasName: 'STRING_VALUE',
    kmsKeyArn: 'STRING_VALUE'
  },
  streamsKmsRole: 'STRING_VALUE',
  trackingConfigArn: 'STRING_VALUE'
};
groundstation.updateMissionProfile(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • contactPostPassDurationSeconds — (Integer)

      Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

    • contactPrePassDurationSeconds — (Integer)

      Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

    • dataflowEdges — (Array<Array<String>>)

      A list of lists of ARNs. Each list of ARNs is an edge, with a from Config and a to Config.

    • minimumViableContactDurationSeconds — (Integer)

      Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.

    • missionProfileId — (String)

      UUID of a mission profile.

    • name — (String)

      Name of a mission profile.

    • streamsKmsKey — (map)

      KMS key to use for encrypting streams.

      • kmsAliasArn — (String)

        KMS Alias Arn.

      • kmsAliasName — (String)

        KMS Alias Name.

      • kmsKeyArn — (String)

        KMS Key Arn.

    • streamsKmsRole — (String)

      Role to use for encrypting streams with KMS key.

    • trackingConfigArn — (String)

      ARN of a tracking Config.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • missionProfileId — (String)

        UUID of a mission profile.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

waitFor(state, params = {}, callback) ⇒ AWS.Request

Waits for a given GroundStation resource. The final callback or 'complete' event will be fired only when the resource is either in its final state or the waiter has timed out and stopped polling for the final state.

Examples:

Waiting for the contactScheduled state

var params = {
  contactId: 'STRING_VALUE' /* required */
};
groundstation.waitFor('contactScheduled', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • state (String)

    the resource state to wait for. Available states for this service are listed in "Waiter Resource States" below.

  • params (map) (defaults to: {})

    a list of parameters for the given state. See each waiter resource state for required parameters.

Callback (callback):

  • function(err, data) { ... }

    Callback containing error and data information. See the respective resource state for the expected error or data information.

    If the waiter times out its requests, it will return a ResourceNotReady error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

Waiter Resource Details

groundstation.waitFor('contactScheduled', params = {}, [callback]) ⇒ AWS.Request

Waits for the contactScheduled state by periodically calling the underlying GroundStation.describeContact() operation every 5 seconds (at most 180 times).

Examples:

Waiting for the contactScheduled state

var params = {
  contactId: 'STRING_VALUE' /* required */
};
groundstation.waitFor('contactScheduled', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object)
    • contactId — (String)

      UUID of a contact.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • contactId — (String)

        UUID of a contact.

      • contactStatus — (String)

        Status of a contact.

        Possible values include:
        • "AVAILABLE"
        • "AWS_CANCELLED"
        • "AWS_FAILED"
        • "CANCELLED"
        • "CANCELLING"
        • "COMPLETED"
        • "FAILED"
        • "FAILED_TO_SCHEDULE"
        • "PASS"
        • "POSTPASS"
        • "PREPASS"
        • "SCHEDULED"
        • "SCHEDULING"
      • dataflowList — (Array<map>)

        List describing source and destination details for each dataflow edge.

        • destination — (map)

          Dataflow details for the destination side.

          • configDetails — (map)

            Additional details for a Config, if type is dataflow endpoint or antenna demod decode.

            • antennaDemodDecodeDetails — (map)

              Details for antenna demod decode Config in a contact.

              • outputNode — (String)

                Name of an antenna demod decode output node used in a contact.

            • endpointDetails — (map)

              Information about the endpoint details.

              • awsGroundStationAgentEndpoint — (map)

                An agent endpoint.

                • agentStatus — (String)

                  The status of AgentEndpoint.

                  Possible values include:
                  • "SUCCESS"
                  • "FAILED"
                  • "ACTIVE"
                  • "INACTIVE"
                • auditResults — (String)

                  The results of the audit.

                  Possible values include:
                  • "HEALTHY"
                  • "UNHEALTHY"
                • egressAddressrequired — (map)

                  The egress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A socket address.

                    • namerequired — (String)

                      Name of a socket address.

                    • portrequired — (Integer)

                      Port of a socket address.

                • ingressAddressrequired — (map)

                  The ingress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A ranged socket address.

                    • namerequired — (String)

                      IPv4 socket address.

                    • portRangerequired — (map)

                      Port range of a socket address.

                      • maximumrequired — (Integer)

                        A maximum value.

                      • minimumrequired — (Integer)

                        A minimum value.

                • namerequired — (String)

                  Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

              • endpoint — (map)

                A dataflow endpoint.

                • address — (map)

                  Socket address of a dataflow endpoint.

                  • namerequired — (String)

                    Name of a socket address.

                  • portrequired — (Integer)

                    Port of a socket address.

                • mtu — (Integer)

                  Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                • name — (String)

                  Name of a dataflow endpoint.

                • status — (String)

                  Status of a dataflow endpoint.

                  Possible values include:
                  • "created"
                  • "creating"
                  • "deleted"
                  • "deleting"
                  • "failed"
              • healthReasons — (Array<String>)

                Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

              • healthStatus — (String)

                A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

                Possible values include:
                • "UNHEALTHY"
                • "HEALTHY"
              • securityDetails — (map)

                Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

                • roleArnrequired — (String)

                  ARN to a role needed for connecting streams to your instances.

                • securityGroupIdsrequired — (Array<String>)

                  The security groups to attach to the elastic network interfaces.

                • subnetIdsrequired — (Array<String>)

                  A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

            • s3RecordingDetails — (map)

              Details for an S3 recording Config in a contact.

              • bucketArn — (String)

                ARN of the bucket used.

              • keyTemplate — (String)

                Key template used for the S3 Recording Configuration

          • configId — (String)

            UUID of a Config.

          • configType — (String)

            Type of a Config.

            Possible values include:
            • "antenna-downlink"
            • "antenna-downlink-demod-decode"
            • "antenna-uplink"
            • "dataflow-endpoint"
            • "tracking"
            • "uplink-echo"
            • "s3-recording"
          • dataflowDestinationRegion — (String)

            Region of a dataflow destination.

        • errorMessage — (String)

          Error message for a dataflow.

        • source — (map)

          Dataflow details for the source side.

          • configDetails — (map)

            Additional details for a Config, if type is dataflow-endpoint or antenna-downlink-demod-decode

            • antennaDemodDecodeDetails — (map)

              Details for antenna demod decode Config in a contact.

              • outputNode — (String)

                Name of an antenna demod decode output node used in a contact.

            • endpointDetails — (map)

              Information about the endpoint details.

              • awsGroundStationAgentEndpoint — (map)

                An agent endpoint.

                • agentStatus — (String)

                  The status of AgentEndpoint.

                  Possible values include:
                  • "SUCCESS"
                  • "FAILED"
                  • "ACTIVE"
                  • "INACTIVE"
                • auditResults — (String)

                  The results of the audit.

                  Possible values include:
                  • "HEALTHY"
                  • "UNHEALTHY"
                • egressAddressrequired — (map)

                  The egress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A socket address.

                    • namerequired — (String)

                      Name of a socket address.

                    • portrequired — (Integer)

                      Port of a socket address.

                • ingressAddressrequired — (map)

                  The ingress address of AgentEndpoint.

                  • mtu — (Integer)

                    Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                  • socketAddressrequired — (map)

                    A ranged socket address.

                    • namerequired — (String)

                      IPv4 socket address.

                    • portRangerequired — (map)

                      Port range of a socket address.

                      • maximumrequired — (Integer)

                        A maximum value.

                      • minimumrequired — (Integer)

                        A minimum value.

                • namerequired — (String)

                  Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.

              • endpoint — (map)

                A dataflow endpoint.

                • address — (map)

                  Socket address of a dataflow endpoint.

                  • namerequired — (String)

                    Name of a socket address.

                  • portrequired — (Integer)

                    Port of a socket address.

                • mtu — (Integer)

                  Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

                • name — (String)

                  Name of a dataflow endpoint.

                • status — (String)

                  Status of a dataflow endpoint.

                  Possible values include:
                  • "created"
                  • "creating"
                  • "deleted"
                  • "deleting"
                  • "failed"
              • healthReasons — (Array<String>)

                Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.

              • healthStatus — (String)

                A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.

                Possible values include:
                • "UNHEALTHY"
                • "HEALTHY"
              • securityDetails — (map)

                Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.

                • roleArnrequired — (String)

                  ARN to a role needed for connecting streams to your instances.

                • securityGroupIdsrequired — (Array<String>)

                  The security groups to attach to the elastic network interfaces.

                • subnetIdsrequired — (Array<String>)

                  A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

            • s3RecordingDetails — (map)

              Details for an S3 recording Config in a contact.

              • bucketArn — (String)

                ARN of the bucket used.

              • keyTemplate — (String)

                Key template used for the S3 Recording Configuration

          • configId — (String)

            UUID of a Config.

          • configType — (String)

            Type of a Config.

            Possible values include:
            • "antenna-downlink"
            • "antenna-downlink-demod-decode"
            • "antenna-uplink"
            • "dataflow-endpoint"
            • "tracking"
            • "uplink-echo"
            • "s3-recording"
          • dataflowSourceRegion — (String)

            Region of a dataflow source.

      • endTime — (Date)

        End time of a contact in UTC.

      • errorMessage — (String)

        Error message for a contact.

      • groundStation — (String)

        Ground station for a contact.

      • maximumElevation — (map)

        Maximum elevation angle of a contact.

        • unitrequired — (String)

          Elevation angle units.

          Possible values include:
          • "DEGREE_ANGLE"
          • "RADIAN"
        • valuerequired — (Float)

          Elevation angle value.

      • missionProfileArn — (String)

        ARN of a mission profile.

      • postPassEndTime — (Date)

        Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

      • prePassStartTime — (Date)

        Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

      • region — (String)

        Region of a contact.

      • satelliteArn — (String)

        ARN of a satellite.

      • startTime — (Date)

        Start time of a contact in UTC.

      • tags — (map<String>)

        Tags assigned to a contact.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also: