Interface ListIngressPointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListIngressPointsResponse.Builder,ListIngressPointsResponse>,MailManagerResponse.Builder,SdkBuilder<ListIngressPointsResponse.Builder,ListIngressPointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListIngressPointsResponse
public static interface ListIngressPointsResponse.Builder extends MailManagerResponse.Builder, SdkPojo, CopyableBuilder<ListIngressPointsResponse.Builder,ListIngressPointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIngressPointsResponse.BuilderingressPoints(Collection<IngressPoint> ingressPoints)The list of ingress endpoints.ListIngressPointsResponse.BuilderingressPoints(Consumer<IngressPoint.Builder>... ingressPoints)The list of ingress endpoints.ListIngressPointsResponse.BuilderingressPoints(IngressPoint... ingressPoints)The list of ingress endpoints.ListIngressPointsResponse.BuildernextToken(String nextToken)If NextToken is returned, there are more results available.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mailmanager.model.MailManagerResponse.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
-
ingressPoints
ListIngressPointsResponse.Builder ingressPoints(Collection<IngressPoint> ingressPoints)
The list of ingress endpoints.
- Parameters:
ingressPoints- The list of ingress endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingressPoints
ListIngressPointsResponse.Builder ingressPoints(IngressPoint... ingressPoints)
The list of ingress endpoints.
- Parameters:
ingressPoints- The list of ingress endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingressPoints
ListIngressPointsResponse.Builder ingressPoints(Consumer<IngressPoint.Builder>... ingressPoints)
The list of ingress endpoints.
This is a convenience method that creates an instance of theIngressPoint.Builderavoiding the need to create one manually viaIngressPoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ingressPoints(List.) - Parameters:
ingressPoints- a consumer that will call methods onIngressPoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ingressPoints(java.util.Collection)
-
nextToken
ListIngressPointsResponse.Builder nextToken(String nextToken)
If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
- Parameters:
nextToken- If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-