Interface ListSubscriptionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSubscriptionsResponse.Builder,ListSubscriptionsResponse>,DataZoneResponse.Builder,SdkBuilder<ListSubscriptionsResponse.Builder,ListSubscriptionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSubscriptionsResponse
public static interface ListSubscriptionsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListSubscriptionsResponse.Builder,ListSubscriptionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSubscriptionsResponse.Builderitems(Collection<SubscriptionSummary> items)The results of theListSubscriptionsaction.ListSubscriptionsResponse.Builderitems(Consumer<SubscriptionSummary.Builder>... items)The results of theListSubscriptionsaction.ListSubscriptionsResponse.Builderitems(SubscriptionSummary... items)The results of theListSubscriptionsaction.ListSubscriptionsResponse.BuildernextToken(String nextToken)When the number of subscriptions is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of subscriptions, the response includes a pagination token namedNextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
items
ListSubscriptionsResponse.Builder items(Collection<SubscriptionSummary> items)
The results of the
ListSubscriptionsaction.- Parameters:
items- The results of theListSubscriptionsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListSubscriptionsResponse.Builder items(SubscriptionSummary... items)
The results of the
ListSubscriptionsaction.- Parameters:
items- The results of theListSubscriptionsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListSubscriptionsResponse.Builder items(Consumer<SubscriptionSummary.Builder>... items)
The results of the
This is a convenience method that creates an instance of theListSubscriptionsaction.SubscriptionSummary.Builderavoiding the need to create one manually viaSubscriptionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onSubscriptionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListSubscriptionsResponse.Builder nextToken(String nextToken)
When the number of subscriptions is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of subscriptions, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListSubscriptionsto list the next set of subscriptions.- Parameters:
nextToken- When the number of subscriptions is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of subscriptions, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListSubscriptionsto list the next set of subscriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-