Interface ListApplicationComponentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationComponentsResponse.Builder,ListApplicationComponentsResponse>,MigrationHubStrategyResponse.Builder,SdkBuilder<ListApplicationComponentsResponse.Builder,ListApplicationComponentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApplicationComponentsResponse
public static interface ListApplicationComponentsResponse.Builder extends MigrationHubStrategyResponse.Builder, SdkPojo, CopyableBuilder<ListApplicationComponentsResponse.Builder,ListApplicationComponentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationComponentsResponse.BuilderapplicationComponentInfos(Collection<ApplicationComponentDetail> applicationComponentInfos)The list of application components with detailed information about each component.ListApplicationComponentsResponse.BuilderapplicationComponentInfos(Consumer<ApplicationComponentDetail.Builder>... applicationComponentInfos)The list of application components with detailed information about each component.ListApplicationComponentsResponse.BuilderapplicationComponentInfos(ApplicationComponentDetail... applicationComponentInfos)The list of application components with detailed information about each component.ListApplicationComponentsResponse.BuildernextToken(String nextToken)The token you use to retrieve the next set of results, or null if there are no more results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.migrationhubstrategy.model.MigrationHubStrategyResponse.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
-
applicationComponentInfos
ListApplicationComponentsResponse.Builder applicationComponentInfos(Collection<ApplicationComponentDetail> applicationComponentInfos)
The list of application components with detailed information about each component.
- Parameters:
applicationComponentInfos- The list of application components with detailed information about each component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationComponentInfos
ListApplicationComponentsResponse.Builder applicationComponentInfos(ApplicationComponentDetail... applicationComponentInfos)
The list of application components with detailed information about each component.
- Parameters:
applicationComponentInfos- The list of application components with detailed information about each component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationComponentInfos
ListApplicationComponentsResponse.Builder applicationComponentInfos(Consumer<ApplicationComponentDetail.Builder>... applicationComponentInfos)
The list of application components with detailed information about each component.
This is a convenience method that creates an instance of theApplicationComponentDetail.Builderavoiding the need to create one manually viaApplicationComponentDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationComponentInfos(List.) - Parameters:
applicationComponentInfos- a consumer that will call methods onApplicationComponentDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationComponentInfos(java.util.Collection)
-
nextToken
ListApplicationComponentsResponse.Builder nextToken(String nextToken)
The token you use to retrieve the next set of results, or null if there are no more results.
- Parameters:
nextToken- The token you use to retrieve the next set of results, or null if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-