Interface ListEventConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListEventConfigurationsResponse.Builder,ListEventConfigurationsResponse>,IotWirelessResponse.Builder,SdkBuilder<ListEventConfigurationsResponse.Builder,ListEventConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEventConfigurationsResponse
public static interface ListEventConfigurationsResponse.Builder extends IotWirelessResponse.Builder, SdkPojo, CopyableBuilder<ListEventConfigurationsResponse.Builder,ListEventConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEventConfigurationsResponse.BuildereventConfigurationsList(Collection<EventConfigurationItem> eventConfigurationsList)Event configurations of all events for a single resource.ListEventConfigurationsResponse.BuildereventConfigurationsList(Consumer<EventConfigurationItem.Builder>... eventConfigurationsList)Event configurations of all events for a single resource.ListEventConfigurationsResponse.BuildereventConfigurationsList(EventConfigurationItem... eventConfigurationsList)Event configurations of all events for a single resource.ListEventConfigurationsResponse.BuildernextToken(String nextToken)To retrieve the next set of results, thenextTokenvalue from a previous response; otherwise null to receive the first set of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotwireless.model.IotWirelessResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListEventConfigurationsResponse.Builder nextToken(String nextToken)
To retrieve the next set of results, the
nextTokenvalue from a previous response; otherwise null to receive the first set of results.- Parameters:
nextToken- To retrieve the next set of results, thenextTokenvalue from a previous response; otherwise null to receive the first set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventConfigurationsList
ListEventConfigurationsResponse.Builder eventConfigurationsList(Collection<EventConfigurationItem> eventConfigurationsList)
Event configurations of all events for a single resource.
- Parameters:
eventConfigurationsList- Event configurations of all events for a single resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventConfigurationsList
ListEventConfigurationsResponse.Builder eventConfigurationsList(EventConfigurationItem... eventConfigurationsList)
Event configurations of all events for a single resource.
- Parameters:
eventConfigurationsList- Event configurations of all events for a single resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventConfigurationsList
ListEventConfigurationsResponse.Builder eventConfigurationsList(Consumer<EventConfigurationItem.Builder>... eventConfigurationsList)
Event configurations of all events for a single resource.
This is a convenience method that creates an instance of theEventConfigurationItem.Builderavoiding the need to create one manually viaEventConfigurationItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#eventConfigurationsList(List.) - Parameters:
eventConfigurationsList- a consumer that will call methods onEventConfigurationItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#eventConfigurationsList(java.util.Collection)
-
-