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