Interface TLEEphemeris.Builder

    • Method Detail

      • s3Object

        TLEEphemeris.Builder s3Object​(S3Object s3Object)

        Identifies the S3 object to be used as the ephemeris.

        Parameters:
        s3Object - Identifies the S3 object to be used as the ephemeris.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tleData

        TLEEphemeris.Builder tleData​(Collection<TLEData> tleData)

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

        Parameters:
        tleData - The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tleData

        TLEEphemeris.Builder tleData​(TLEData... tleData)

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

        Parameters:
        tleData - The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tleData

        TLEEphemeris.Builder tleData​(Consumer<TLEData.Builder>... tleData)

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

        This is a convenience method that creates an instance of the TLEData.Builder avoiding the need to create one manually via TLEData.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tleData(List).

        Parameters:
        tleData - a consumer that will call methods on TLEData.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tleData(java.util.Collection)