Interface DescribeFleetInstancesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeFleetInstancesResponse.Builder,DescribeFleetInstancesResponse>,Ec2Response.Builder,SdkBuilder<DescribeFleetInstancesResponse.Builder,DescribeFleetInstancesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeFleetInstancesResponse
public static interface DescribeFleetInstancesResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeFleetInstancesResponse.Builder,DescribeFleetInstancesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFleetInstancesResponse.BuilderactiveInstances(Collection<ActiveInstance> activeInstances)The running instances.DescribeFleetInstancesResponse.BuilderactiveInstances(Consumer<ActiveInstance.Builder>... activeInstances)The running instances.DescribeFleetInstancesResponse.BuilderactiveInstances(ActiveInstance... activeInstances)The running instances.DescribeFleetInstancesResponse.BuilderfleetId(String fleetId)The ID of the EC2 Fleet.DescribeFleetInstancesResponse.BuildernextToken(String nextToken)The token to include in another request to get the next page of items.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
activeInstances
DescribeFleetInstancesResponse.Builder activeInstances(Collection<ActiveInstance> activeInstances)
The running instances. This list is refreshed periodically and might be out of date.
- Parameters:
activeInstances- The running instances. This list is refreshed periodically and might be out of date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeInstances
DescribeFleetInstancesResponse.Builder activeInstances(ActiveInstance... activeInstances)
The running instances. This list is refreshed periodically and might be out of date.
- Parameters:
activeInstances- The running instances. This list is refreshed periodically and might be out of date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeInstances
DescribeFleetInstancesResponse.Builder activeInstances(Consumer<ActiveInstance.Builder>... activeInstances)
The running instances. This list is refreshed periodically and might be out of date.
This is a convenience method that creates an instance of theActiveInstance.Builderavoiding the need to create one manually viaActiveInstance.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#activeInstances(List.) - Parameters:
activeInstances- a consumer that will call methods onActiveInstance.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#activeInstances(java.util.Collection)
-
nextToken
DescribeFleetInstancesResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is
nullwhen there are no more items to return.- Parameters:
nextToken- The token to include in another request to get the next page of items. This value isnullwhen there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fleetId
DescribeFleetInstancesResponse.Builder fleetId(String fleetId)
The ID of the EC2 Fleet.
- Parameters:
fleetId- The ID of the EC2 Fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-