Interface Fleet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Fleet.Builder,Fleet>,SdkBuilder<Fleet.Builder,Fleet>,SdkPojo
- Enclosing class:
- Fleet
public static interface Fleet.Builder extends SdkPojo, CopyableBuilder<Fleet.Builder,Fleet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Fleet.Builderarn(String arn)The Amazon Resource Name (ARN) of the fleet.Fleet.BuildercreatedAt(Instant createdAt)The time, in milliseconds since the epoch, when the fleet was created.Fleet.BuilderlastDeploymentJob(String lastDeploymentJob)The Amazon Resource Name (ARN) of the last deployment job.Fleet.BuilderlastDeploymentStatus(String lastDeploymentStatus)The status of the last fleet deployment.Fleet.BuilderlastDeploymentStatus(DeploymentStatus lastDeploymentStatus)The status of the last fleet deployment.Fleet.BuilderlastDeploymentTime(Instant lastDeploymentTime)The time of the last deployment.Fleet.Buildername(String name)The name of the fleet.-
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
Fleet.Builder name(String name)
The name of the fleet.
- Parameters:
name- The name of the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
Fleet.Builder arn(String arn)
The Amazon Resource Name (ARN) of the fleet.
- Parameters:
arn- The Amazon Resource Name (ARN) of the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
Fleet.Builder createdAt(Instant createdAt)
The time, in milliseconds since the epoch, when the fleet was created.
- Parameters:
createdAt- The time, in milliseconds since the epoch, when the fleet was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastDeploymentStatus
Fleet.Builder lastDeploymentStatus(String lastDeploymentStatus)
The status of the last fleet deployment.
- Parameters:
lastDeploymentStatus- The status of the last fleet deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
lastDeploymentStatus
Fleet.Builder lastDeploymentStatus(DeploymentStatus lastDeploymentStatus)
The status of the last fleet deployment.
- Parameters:
lastDeploymentStatus- The status of the last fleet deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
lastDeploymentJob
Fleet.Builder lastDeploymentJob(String lastDeploymentJob)
The Amazon Resource Name (ARN) of the last deployment job.
- Parameters:
lastDeploymentJob- The Amazon Resource Name (ARN) of the last deployment job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastDeploymentTime
Fleet.Builder lastDeploymentTime(Instant lastDeploymentTime)
The time of the last deployment.
- Parameters:
lastDeploymentTime- The time of the last deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-