Interface GetDedicatedIpsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetDedicatedIpsResponse.Builder,GetDedicatedIpsResponse>
,SdkBuilder<GetDedicatedIpsResponse.Builder,GetDedicatedIpsResponse>
,SdkPojo
,SdkResponse.Builder
,SesV2Response.Builder
- Enclosing class:
- GetDedicatedIpsResponse
public static interface GetDedicatedIpsResponse.Builder extends SesV2Response.Builder, SdkPojo, CopyableBuilder<GetDedicatedIpsResponse.Builder,GetDedicatedIpsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDedicatedIpsResponse.Builder
dedicatedIps(Collection<DedicatedIp> dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.GetDedicatedIpsResponse.Builder
dedicatedIps(Consumer<DedicatedIp.Builder>... dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.GetDedicatedIpsResponse.Builder
dedicatedIps(DedicatedIp... dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.GetDedicatedIpsResponse.Builder
nextToken(String nextToken)
A token that indicates that there are additional dedicated IP addresses to list.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.sesv2.model.SesV2Response.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
dedicatedIps
GetDedicatedIpsResponse.Builder dedicatedIps(Collection<DedicatedIp> dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.
- Parameters:
dedicatedIps
- A list of dedicated IP addresses that are associated with your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dedicatedIps
GetDedicatedIpsResponse.Builder dedicatedIps(DedicatedIp... dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.
- Parameters:
dedicatedIps
- A list of dedicated IP addresses that are associated with your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dedicatedIps
GetDedicatedIpsResponse.Builder dedicatedIps(Consumer<DedicatedIp.Builder>... dedicatedIps)
A list of dedicated IP addresses that are associated with your Amazon Web Services account.
This is a convenience method that creates an instance of theDedicatedIp.Builder
avoiding the need to create one manually viaDedicatedIp.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dedicatedIps(List
.) - Parameters:
dedicatedIps
- a consumer that will call methods onDedicatedIp.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dedicatedIps(java.util.Collection
)
-
nextToken
GetDedicatedIpsResponse.Builder nextToken(String nextToken)
A token that indicates that there are additional dedicated IP addresses to list. To view additional addresses, issue another request to
GetDedicatedIps
, passing this token in theNextToken
parameter.- Parameters:
nextToken
- A token that indicates that there are additional dedicated IP addresses to list. To view additional addresses, issue another request toGetDedicatedIps
, passing this token in theNextToken
parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-