Interface SimulationMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimulationMetadata.Builder,SimulationMetadata>,SdkBuilder<SimulationMetadata.Builder,SimulationMetadata>,SdkPojo
- Enclosing class:
- SimulationMetadata
public static interface SimulationMetadata.Builder extends SdkPojo, CopyableBuilder<SimulationMetadata.Builder,SimulationMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimulationMetadata.Builderarn(String arn)The Amazon Resource Name (ARN) of the simulation.SimulationMetadata.BuildercreationTime(Instant creationTime)The time when the simulation was created, expressed as the number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).SimulationMetadata.Buildername(String name)The name of the simulation.SimulationMetadata.Builderstatus(String status)The current status of the simulation.SimulationMetadata.Builderstatus(SimulationStatus status)The current status of the simulation.SimulationMetadata.BuildertargetStatus(String targetStatus)The desired status of the simulation.SimulationMetadata.BuildertargetStatus(SimulationTargetStatus targetStatus)The desired status of the simulation.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
arn
SimulationMetadata.Builder arn(String arn)
The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
- Parameters:
arn- The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
SimulationMetadata.Builder creationTime(Instant creationTime)
The time when the simulation was created, expressed as the number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).
- Parameters:
creationTime- The time when the simulation was created, expressed as the number of seconds and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
SimulationMetadata.Builder name(String name)
The name of the simulation.
- Parameters:
name- The name of the simulation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
SimulationMetadata.Builder status(String status)
The current status of the simulation.
- Parameters:
status- The current status of the simulation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimulationStatus,SimulationStatus
-
status
SimulationMetadata.Builder status(SimulationStatus status)
The current status of the simulation.
- Parameters:
status- The current status of the simulation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimulationStatus,SimulationStatus
-
targetStatus
SimulationMetadata.Builder targetStatus(String targetStatus)
The desired status of the simulation.
- Parameters:
targetStatus- The desired status of the simulation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimulationTargetStatus,SimulationTargetStatus
-
targetStatus
SimulationMetadata.Builder targetStatus(SimulationTargetStatus targetStatus)
The desired status of the simulation.
- Parameters:
targetStatus- The desired status of the simulation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimulationTargetStatus,SimulationTargetStatus
-
-