Interface ListInputsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListInputsResponse.Builder,ListInputsResponse>,IotEventsResponse.Builder,SdkBuilder<ListInputsResponse.Builder,ListInputsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListInputsResponse
public static interface ListInputsResponse.Builder extends IotEventsResponse.Builder, SdkPojo, CopyableBuilder<ListInputsResponse.Builder,ListInputsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListInputsResponse.BuilderinputSummaries(Collection<InputSummary> inputSummaries)Summary information about the inputs.ListInputsResponse.BuilderinputSummaries(Consumer<InputSummary.Builder>... inputSummaries)Summary information about the inputs.ListInputsResponse.BuilderinputSummaries(InputSummary... inputSummaries)Summary information about the inputs.ListInputsResponse.BuildernextToken(String nextToken)The token that you can use to return the next set of results, ornullif there are no more results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotevents.model.IotEventsResponse.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
-
inputSummaries
ListInputsResponse.Builder inputSummaries(Collection<InputSummary> inputSummaries)
Summary information about the inputs.
- Parameters:
inputSummaries- Summary information about the inputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputSummaries
ListInputsResponse.Builder inputSummaries(InputSummary... inputSummaries)
Summary information about the inputs.
- Parameters:
inputSummaries- Summary information about the inputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputSummaries
ListInputsResponse.Builder inputSummaries(Consumer<InputSummary.Builder>... inputSummaries)
Summary information about the inputs.
This is a convenience method that creates an instance of theInputSummary.Builderavoiding the need to create one manually viaInputSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputSummaries(List.) - Parameters:
inputSummaries- a consumer that will call methods onInputSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputSummaries(java.util.Collection)
-
nextToken
ListInputsResponse.Builder nextToken(String nextToken)
The token that you can use to return the next set of results, or
nullif there are no more results.- Parameters:
nextToken- The token that you can use to return the next set of results, ornullif there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-