Interface ListComponentsResponse.Builder
-
- All Superinterfaces:
ApplicationInsightsResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListComponentsResponse.Builder,ListComponentsResponse>,SdkBuilder<ListComponentsResponse.Builder,ListComponentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListComponentsResponse
public static interface ListComponentsResponse.Builder extends ApplicationInsightsResponse.Builder, SdkPojo, CopyableBuilder<ListComponentsResponse.Builder,ListComponentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListComponentsResponse.BuilderapplicationComponentList(Collection<ApplicationComponent> applicationComponentList)The list of application components.ListComponentsResponse.BuilderapplicationComponentList(Consumer<ApplicationComponent.Builder>... applicationComponentList)The list of application components.ListComponentsResponse.BuilderapplicationComponentList(ApplicationComponent... applicationComponentList)The list of application components.ListComponentsResponse.BuildernextToken(String nextToken)The token to request the next page of results.-
Methods inherited from interface software.amazon.awssdk.services.applicationinsights.model.ApplicationInsightsResponse.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
-
applicationComponentList
ListComponentsResponse.Builder applicationComponentList(Collection<ApplicationComponent> applicationComponentList)
The list of application components.
- Parameters:
applicationComponentList- The list of application components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationComponentList
ListComponentsResponse.Builder applicationComponentList(ApplicationComponent... applicationComponentList)
The list of application components.
- Parameters:
applicationComponentList- The list of application components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationComponentList
ListComponentsResponse.Builder applicationComponentList(Consumer<ApplicationComponent.Builder>... applicationComponentList)
The list of application components.
This is a convenience method that creates an instance of theApplicationComponent.Builderavoiding the need to create one manually viaApplicationComponent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationComponentList(List.) - Parameters:
applicationComponentList- a consumer that will call methods onApplicationComponent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationComponentList(java.util.Collection)
-
nextToken
ListComponentsResponse.Builder nextToken(String nextToken)
The token to request the next page of results.
- Parameters:
nextToken- The token to request the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-