Interface ListThingsInThingGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListThingsInThingGroupRequest.Builder,ListThingsInThingGroupRequest>
,IotRequest.Builder
,SdkBuilder<ListThingsInThingGroupRequest.Builder,ListThingsInThingGroupRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListThingsInThingGroupRequest
public static interface ListThingsInThingGroupRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<ListThingsInThingGroupRequest.Builder,ListThingsInThingGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListThingsInThingGroupRequest.Builder
maxResults(Integer maxResults)
The maximum number of results to return at one time.ListThingsInThingGroupRequest.Builder
nextToken(String nextToken)
To retrieve the next set of results, thenextToken
value from a previous response; otherwise null to receive the first set of results.ListThingsInThingGroupRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListThingsInThingGroupRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListThingsInThingGroupRequest.Builder
recursive(Boolean recursive)
When true, list things in this thing group and in all child groups as well.ListThingsInThingGroupRequest.Builder
thingGroupName(String thingGroupName)
The thing group name.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
thingGroupName
ListThingsInThingGroupRequest.Builder thingGroupName(String thingGroupName)
The thing group name.
- Parameters:
thingGroupName
- The thing group name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recursive
ListThingsInThingGroupRequest.Builder recursive(Boolean recursive)
When true, list things in this thing group and in all child groups as well.
- Parameters:
recursive
- When true, list things in this thing group and in all child groups as well.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListThingsInThingGroupRequest.Builder nextToken(String nextToken)
To retrieve the next set of results, the
nextToken
value from a previous response; otherwise null to receive the first set of results.- Parameters:
nextToken
- To retrieve the next set of results, thenextToken
value 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.
-
maxResults
ListThingsInThingGroupRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return at one time.
- Parameters:
maxResults
- The maximum number of results to return at one time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListThingsInThingGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListThingsInThingGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-