Interface ListExtensionAssociationsResponse.Builder
-
- All Superinterfaces:
AppConfigResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListExtensionAssociationsResponse.Builder,ListExtensionAssociationsResponse>,SdkBuilder<ListExtensionAssociationsResponse.Builder,ListExtensionAssociationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListExtensionAssociationsResponse
public static interface ListExtensionAssociationsResponse.Builder extends AppConfigResponse.Builder, SdkPojo, CopyableBuilder<ListExtensionAssociationsResponse.Builder,ListExtensionAssociationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExtensionAssociationsResponse.Builderitems(Collection<ExtensionAssociationSummary> items)The list of extension associations.ListExtensionAssociationsResponse.Builderitems(Consumer<ExtensionAssociationSummary.Builder>... items)The list of extension associations.ListExtensionAssociationsResponse.Builderitems(ExtensionAssociationSummary... items)The list of extension associations.ListExtensionAssociationsResponse.BuildernextToken(String nextToken)The token for the next set of items to return.-
Methods inherited from interface software.amazon.awssdk.services.appconfig.model.AppConfigResponse.Builder
build, responseMetadata, responseMetadata
-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
items
ListExtensionAssociationsResponse.Builder items(Collection<ExtensionAssociationSummary> items)
The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.
- Parameters:
items- The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListExtensionAssociationsResponse.Builder items(ExtensionAssociationSummary... items)
The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.
- Parameters:
items- The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListExtensionAssociationsResponse.Builder items(Consumer<ExtensionAssociationSummary.Builder>... items)
The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.
This is a convenience method that creates an instance of theExtensionAssociationSummary.Builderavoiding the need to create one manually viaExtensionAssociationSummary.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 onExtensionAssociationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListExtensionAssociationsResponse.Builder nextToken(String nextToken)
The token for the next set of items to return. Use this token to get the next set of results.
- Parameters:
nextToken- The token for the next set of items to return. Use this token to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-