Interface ListDeviceProfilesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListDeviceProfilesResponse.Builder,ListDeviceProfilesResponse>,IotWirelessResponse.Builder,SdkBuilder<ListDeviceProfilesResponse.Builder,ListDeviceProfilesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListDeviceProfilesResponse
public static interface ListDeviceProfilesResponse.Builder extends IotWirelessResponse.Builder, SdkPojo, CopyableBuilder<ListDeviceProfilesResponse.Builder,ListDeviceProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDeviceProfilesResponse.BuilderdeviceProfileList(Collection<DeviceProfile> deviceProfileList)The list of device profiles.ListDeviceProfilesResponse.BuilderdeviceProfileList(Consumer<DeviceProfile.Builder>... deviceProfileList)The list of device profiles.ListDeviceProfilesResponse.BuilderdeviceProfileList(DeviceProfile... deviceProfileList)The list of device profiles.ListDeviceProfilesResponse.BuildernextToken(String nextToken)The token to use to get the next set of results, or null if there are no additional 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
ListDeviceProfilesResponse.Builder nextToken(String nextToken)
The token to use to get the next set of results, or null if there are no additional results.
- Parameters:
nextToken- The token to use to get the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deviceProfileList
ListDeviceProfilesResponse.Builder deviceProfileList(Collection<DeviceProfile> deviceProfileList)
The list of device profiles.
- Parameters:
deviceProfileList- The list of device profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deviceProfileList
ListDeviceProfilesResponse.Builder deviceProfileList(DeviceProfile... deviceProfileList)
The list of device profiles.
- Parameters:
deviceProfileList- The list of device profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deviceProfileList
ListDeviceProfilesResponse.Builder deviceProfileList(Consumer<DeviceProfile.Builder>... deviceProfileList)
The list of device profiles.
This is a convenience method that creates an instance of theDeviceProfile.Builderavoiding the need to create one manually viaDeviceProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#deviceProfileList(List.) - Parameters:
deviceProfileList- a consumer that will call methods onDeviceProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#deviceProfileList(java.util.Collection)
-
-