Interface ListThingTypesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListThingTypesResponse.Builder,ListThingTypesResponse>,IotResponse.Builder,SdkBuilder<ListThingTypesResponse.Builder,ListThingTypesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListThingTypesResponse
public static interface ListThingTypesResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListThingTypesResponse.Builder,ListThingTypesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListThingTypesResponse.BuildernextToken(String nextToken)The token for the next set of results.ListThingTypesResponse.BuilderthingTypes(Collection<ThingTypeDefinition> thingTypes)The thing types.ListThingTypesResponse.BuilderthingTypes(Consumer<ThingTypeDefinition.Builder>... thingTypes)The thing types.ListThingTypesResponse.BuilderthingTypes(ThingTypeDefinition... thingTypes)The thing types.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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
-
thingTypes
ListThingTypesResponse.Builder thingTypes(Collection<ThingTypeDefinition> thingTypes)
The thing types.
- Parameters:
thingTypes- The thing types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingTypes
ListThingTypesResponse.Builder thingTypes(ThingTypeDefinition... thingTypes)
The thing types.
- Parameters:
thingTypes- The thing types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingTypes
ListThingTypesResponse.Builder thingTypes(Consumer<ThingTypeDefinition.Builder>... thingTypes)
The thing types.
This is a convenience method that creates an instance of theThingTypeDefinition.Builderavoiding the need to create one manually viaThingTypeDefinition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#thingTypes(List.) - Parameters:
thingTypes- a consumer that will call methods onThingTypeDefinition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#thingTypes(java.util.Collection)
-
nextToken
ListThingTypesResponse.Builder nextToken(String nextToken)
The token for the next set of results. Will not be returned if operation has returned all results.
- Parameters:
nextToken- The token for the next set of results. Will not be returned if operation has returned all results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-