Interface ListComponentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListComponentsResponse.Builder,ListComponentsResponse>,SdkBuilder<ListComponentsResponse.Builder,ListComponentsResponse>,SdkPojo,SdkResponse.Builder,SsmSapResponse.Builder
- Enclosing class:
- ListComponentsResponse
public static interface ListComponentsResponse.Builder extends SsmSapResponse.Builder, SdkPojo, CopyableBuilder<ListComponentsResponse.Builder,ListComponentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListComponentsResponse.Buildercomponents(Collection<ComponentSummary> components)List of components registered with AWS System Manager for SAP.ListComponentsResponse.Buildercomponents(Consumer<ComponentSummary.Builder>... components)List of components registered with AWS System Manager for SAP.ListComponentsResponse.Buildercomponents(ComponentSummary... components)List of components registered with AWS System Manager for SAP.ListComponentsResponse.BuildernextToken(String nextToken)The token to use to retrieve the next page of results.-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssmsap.model.SsmSapResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
components
ListComponentsResponse.Builder components(Collection<ComponentSummary> components)
List of components registered with AWS System Manager for SAP.
- Parameters:
components- List of components registered with AWS System Manager for SAP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
components
ListComponentsResponse.Builder components(ComponentSummary... components)
List of components registered with AWS System Manager for SAP.
- Parameters:
components- List of components registered with AWS System Manager for SAP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
components
ListComponentsResponse.Builder components(Consumer<ComponentSummary.Builder>... components)
List of components registered with AWS System Manager for SAP.
This is a convenience method that creates an instance of theComponentSummary.Builderavoiding the need to create one manually viaComponentSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#components(List.) - Parameters:
components- a consumer that will call methods onComponentSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#components(java.util.Collection)
-
nextToken
ListComponentsResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
- Parameters:
nextToken- The token to use to retrieve the next page of results. This value is null when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-