Interface DescribeMovingAddressesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeMovingAddressesResponse.Builder,DescribeMovingAddressesResponse>,Ec2Response.Builder,SdkBuilder<DescribeMovingAddressesResponse.Builder,DescribeMovingAddressesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeMovingAddressesResponse
@Mutable @NotThreadSafe public static interface DescribeMovingAddressesResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeMovingAddressesResponse.Builder,DescribeMovingAddressesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeMovingAddressesResponse.BuildermovingAddressStatuses(Collection<MovingAddressStatus> movingAddressStatuses)The status for each Elastic IP address.DescribeMovingAddressesResponse.BuildermovingAddressStatuses(Consumer<MovingAddressStatus.Builder>... movingAddressStatuses)The status for each Elastic IP address.DescribeMovingAddressesResponse.BuildermovingAddressStatuses(MovingAddressStatus... movingAddressStatuses)The status for each Elastic IP address.DescribeMovingAddressesResponse.BuildernextToken(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
-
movingAddressStatuses
DescribeMovingAddressesResponse.Builder movingAddressStatuses(Collection<MovingAddressStatus> movingAddressStatuses)
The status for each Elastic IP address.
- Parameters:
movingAddressStatuses- The status for each Elastic IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
movingAddressStatuses
DescribeMovingAddressesResponse.Builder movingAddressStatuses(MovingAddressStatus... movingAddressStatuses)
The status for each Elastic IP address.
- Parameters:
movingAddressStatuses- The status for each Elastic IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
movingAddressStatuses
DescribeMovingAddressesResponse.Builder movingAddressStatuses(Consumer<MovingAddressStatus.Builder>... movingAddressStatuses)
The status for each Elastic IP address.
This is a convenience method that creates an instance of theMovingAddressStatus.Builderavoiding the need to create one manually viaMovingAddressStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#movingAddressStatuses(List.) - Parameters:
movingAddressStatuses- a consumer that will call methods onMovingAddressStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#movingAddressStatuses(java.util.Collection)
-
nextToken
DescribeMovingAddressesResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is
nullwhen there are no more results to return.- Parameters:
nextToken- The token to use to retrieve the next page of results. This value isnullwhen there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-