Interface ModelManifestSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ModelManifestSummary.Builder,ModelManifestSummary>,SdkBuilder<ModelManifestSummary.Builder,ModelManifestSummary>,SdkPojo
- Enclosing class:
- ModelManifestSummary
public static interface ModelManifestSummary.Builder extends SdkPojo, CopyableBuilder<ModelManifestSummary.Builder,ModelManifestSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelManifestSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the vehicle model.ModelManifestSummary.BuildercreationTime(Instant creationTime)The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).ModelManifestSummary.Builderdescription(String description)A brief description of the vehicle model.ModelManifestSummary.BuilderlastModificationTime(Instant lastModificationTime)The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).ModelManifestSummary.Buildername(String name)The name of the vehicle model.ModelManifestSummary.BuildersignalCatalogArn(String signalCatalogArn)The ARN of the signal catalog associated with the vehicle model.ModelManifestSummary.Builderstatus(String status)The state of the vehicle model.ModelManifestSummary.Builderstatus(ManifestStatus status)The state of the vehicle model.-
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
-
name
ModelManifestSummary.Builder name(String name)
The name of the vehicle model.
- Parameters:
name- The name of the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
ModelManifestSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the vehicle model.
- Parameters:
arn- The Amazon Resource Name (ARN) of the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signalCatalogArn
ModelManifestSummary.Builder signalCatalogArn(String signalCatalogArn)
The ARN of the signal catalog associated with the vehicle model.
- Parameters:
signalCatalogArn- The ARN of the signal catalog associated with the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ModelManifestSummary.Builder description(String description)
A brief description of the vehicle model.
- Parameters:
description- A brief description of the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ModelManifestSummary.Builder status(String status)
The state of the vehicle model. If the status is
ACTIVE, the vehicle model can't be edited. If the status isDRAFT, you can edit the vehicle model.- Parameters:
status- The state of the vehicle model. If the status isACTIVE, the vehicle model can't be edited. If the status isDRAFT, you can edit the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManifestStatus,ManifestStatus
-
status
ModelManifestSummary.Builder status(ManifestStatus status)
The state of the vehicle model. If the status is
ACTIVE, the vehicle model can't be edited. If the status isDRAFT, you can edit the vehicle model.- Parameters:
status- The state of the vehicle model. If the status isACTIVE, the vehicle model can't be edited. If the status isDRAFT, you can edit the vehicle model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ManifestStatus,ManifestStatus
-
creationTime
ModelManifestSummary.Builder creationTime(Instant creationTime)
The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
- Parameters:
creationTime- The time the vehicle model 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
ModelManifestSummary.Builder lastModificationTime(Instant lastModificationTime)
The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
- Parameters:
lastModificationTime- The time the vehicle model 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.
-
-