Interface DescribeHostsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeHostsResponse.Builder,DescribeHostsResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeHostsResponse.Builder,DescribeHostsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeHostsResponse
public static interface DescribeHostsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeHostsResponse.Builder,DescribeHostsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeHostsResponse.Builder
hosts(Collection<Host> hosts)
Information about the Dedicated Hosts.DescribeHostsResponse.Builder
hosts(Consumer<Host.Builder>... hosts)
Information about the Dedicated Hosts.DescribeHostsResponse.Builder
hosts(Host... hosts)
Information about the Dedicated Hosts.DescribeHostsResponse.Builder
nextToken(String nextToken)
The token to use to retrieve the next page of results.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
hosts
DescribeHostsResponse.Builder hosts(Collection<Host> hosts)
Information about the Dedicated Hosts.
- Parameters:
hosts
- Information about the Dedicated Hosts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hosts
DescribeHostsResponse.Builder hosts(Host... hosts)
Information about the Dedicated Hosts.
- Parameters:
hosts
- Information about the Dedicated Hosts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hosts
DescribeHostsResponse.Builder hosts(Consumer<Host.Builder>... hosts)
Information about the Dedicated Hosts.
This is a convenience method that creates an instance of theHost.Builder
avoiding the need to create one manually viaHost.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#hosts(List
.) - Parameters:
hosts
- a consumer that will call methods onHost.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#hosts(java.util.Collection
)
-
nextToken
DescribeHostsResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.- Parameters:
nextToken
- The token to use to retrieve the next page of results. This value isnull
when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-