Interface ListAddonInstancesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAddonInstancesResponse.Builder,ListAddonInstancesResponse>,MailManagerResponse.Builder,SdkBuilder<ListAddonInstancesResponse.Builder,ListAddonInstancesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAddonInstancesResponse
public static interface ListAddonInstancesResponse.Builder extends MailManagerResponse.Builder, SdkPojo, CopyableBuilder<ListAddonInstancesResponse.Builder,ListAddonInstancesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAddonInstancesResponse.BuilderaddonInstances(Collection<AddonInstance> addonInstances)The list of ingress endpoints.ListAddonInstancesResponse.BuilderaddonInstances(Consumer<AddonInstance.Builder>... addonInstances)The list of ingress endpoints.ListAddonInstancesResponse.BuilderaddonInstances(AddonInstance... addonInstances)The list of ingress endpoints.ListAddonInstancesResponse.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
-
addonInstances
ListAddonInstancesResponse.Builder addonInstances(Collection<AddonInstance> addonInstances)
The list of ingress endpoints.
- Parameters:
addonInstances- The list of ingress endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addonInstances
ListAddonInstancesResponse.Builder addonInstances(AddonInstance... addonInstances)
The list of ingress endpoints.
- Parameters:
addonInstances- The list of ingress endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addonInstances
ListAddonInstancesResponse.Builder addonInstances(Consumer<AddonInstance.Builder>... addonInstances)
The list of ingress endpoints.
This is a convenience method that creates an instance of theAddonInstance.Builderavoiding the need to create one manually viaAddonInstance.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#addonInstances(List.) - Parameters:
addonInstances- a consumer that will call methods onAddonInstance.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#addonInstances(java.util.Collection)
-
nextToken
ListAddonInstancesResponse.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.
-
-