Interface LaunchActionsStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LaunchActionsStatus.Builder,LaunchActionsStatus>,SdkBuilder<LaunchActionsStatus.Builder,LaunchActionsStatus>,SdkPojo
- Enclosing class:
- LaunchActionsStatus
public static interface LaunchActionsStatus.Builder extends SdkPojo, CopyableBuilder<LaunchActionsStatus.Builder,LaunchActionsStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LaunchActionsStatus.Builderruns(Collection<LaunchActionRun> runs)List of post launch action status.LaunchActionsStatus.Builderruns(Consumer<LaunchActionRun.Builder>... runs)List of post launch action status.LaunchActionsStatus.Builderruns(LaunchActionRun... runs)List of post launch action status.LaunchActionsStatus.BuilderssmAgentDiscoveryDatetime(String ssmAgentDiscoveryDatetime)Time where the AWS Systems Manager was detected as running on the launched instance.-
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
-
runs
LaunchActionsStatus.Builder runs(Collection<LaunchActionRun> runs)
List of post launch action status.
- Parameters:
runs- List of post launch action status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runs
LaunchActionsStatus.Builder runs(LaunchActionRun... runs)
List of post launch action status.
- Parameters:
runs- List of post launch action status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runs
LaunchActionsStatus.Builder runs(Consumer<LaunchActionRun.Builder>... runs)
List of post launch action status.
This is a convenience method that creates an instance of theLaunchActionRun.Builderavoiding the need to create one manually viaLaunchActionRun.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#runs(List.) - Parameters:
runs- a consumer that will call methods onLaunchActionRun.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#runs(java.util.Collection)
-
ssmAgentDiscoveryDatetime
LaunchActionsStatus.Builder ssmAgentDiscoveryDatetime(String ssmAgentDiscoveryDatetime)
Time where the AWS Systems Manager was detected as running on the launched instance.
- Parameters:
ssmAgentDiscoveryDatetime- Time where the AWS Systems Manager was detected as running on the launched instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-