Interface TLEEphemeris.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TLEEphemeris.Builder,TLEEphemeris>,SdkBuilder<TLEEphemeris.Builder,TLEEphemeris>,SdkPojo
- Enclosing class:
- TLEEphemeris
public static interface TLEEphemeris.Builder extends SdkPojo, CopyableBuilder<TLEEphemeris.Builder,TLEEphemeris>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TLEEphemeris.Builders3Object(Consumer<S3Object.Builder> s3Object)Identifies the S3 object to be used as the ephemeris.TLEEphemeris.Builders3Object(S3Object s3Object)Identifies the S3 object to be used as the ephemeris.TLEEphemeris.BuildertleData(Collection<TLEData> tleData)The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.TLEEphemeris.BuildertleData(Consumer<TLEData.Builder>... tleData)The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.TLEEphemeris.BuildertleData(TLEData... tleData)The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
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.
-
s3Object
default TLEEphemeris.Builder s3Object(Consumer<S3Object.Builder> s3Object)
Identifies the S3 object to be used as the ephemeris.
This is a convenience method that creates an instance of theS3Object.Builderavoiding the need to create one manually viaS3Object.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Object(S3Object).- Parameters:
s3Object- a consumer that will call methods onS3Object.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Object(S3Object)
-
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 theTLEData.Builderavoiding the need to create one manually viaTLEData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tleData(List.) - Parameters:
tleData- a consumer that will call methods onTLEData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tleData(java.util.Collection)
-
-