Interface VehicleSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VehicleSummary.Builder,VehicleSummary>,SdkBuilder<VehicleSummary.Builder,VehicleSummary>,SdkPojo
- Enclosing class:
- VehicleSummary
public static interface VehicleSummary.Builder extends SdkPojo, CopyableBuilder<VehicleSummary.Builder,VehicleSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VehicleSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the vehicle.VehicleSummary.Builderattributes(Map<String,String> attributes)Static information about a vehicle in a key-value pair.VehicleSummary.BuildercreationTime(Instant creationTime)The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time).VehicleSummary.BuilderdecoderManifestArn(String decoderManifestArn)The ARN of a decoder manifest associated with the vehicle.VehicleSummary.BuilderlastModificationTime(Instant lastModificationTime)The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).VehicleSummary.BuildermodelManifestArn(String modelManifestArn)The ARN of a vehicle model (model manifest) associated with the vehicle.VehicleSummary.BuildervehicleName(String vehicleName)The unique ID of the vehicle.-
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
-
vehicleName
VehicleSummary.Builder vehicleName(String vehicleName)
The unique ID of the vehicle.
- Parameters:
vehicleName- The unique ID of the vehicle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
VehicleSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the vehicle.
- Parameters:
arn- The Amazon Resource Name (ARN) of the vehicle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelManifestArn
VehicleSummary.Builder modelManifestArn(String modelManifestArn)
The ARN of a vehicle model (model manifest) associated with the vehicle.
- Parameters:
modelManifestArn- The ARN of a vehicle model (model manifest) associated with the vehicle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
decoderManifestArn
VehicleSummary.Builder decoderManifestArn(String decoderManifestArn)
The ARN of a decoder manifest associated with the vehicle.
- Parameters:
decoderManifestArn- The ARN of a decoder manifest associated with the vehicle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
VehicleSummary.Builder creationTime(Instant creationTime)
The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time).
- Parameters:
creationTime- The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModificationTime
VehicleSummary.Builder lastModificationTime(Instant lastModificationTime)
The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
- Parameters:
lastModificationTime- The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
VehicleSummary.Builder attributes(Map<String,String> attributes)
Static information about a vehicle in a key-value pair. For example:
"engineType":"1.3 L R2"- Parameters:
attributes- Static information about a vehicle in a key-value pair. For example:"engineType":"1.3 L R2"- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-