Interface ListThingsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListThingsRequest.Builder,ListThingsRequest>
,IotRequest.Builder
,SdkBuilder<ListThingsRequest.Builder,ListThingsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListThingsRequest
public static interface ListThingsRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<ListThingsRequest.Builder,ListThingsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListThingsRequest.Builder
attributeName(String attributeName)
The attribute name used to search for things.ListThingsRequest.Builder
attributeValue(String attributeValue)
The attribute value used to search for things.ListThingsRequest.Builder
maxResults(Integer maxResults)
The maximum number of results to return in this operation.ListThingsRequest.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.ListThingsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListThingsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListThingsRequest.Builder
thingTypeName(String thingTypeName)
The name of the thing type used to search for things.ListThingsRequest.Builder
usePrefixAttributeValue(Boolean usePrefixAttributeValue)
Whentrue
, the action returns the thing resources with attribute values that start with theattributeValue
provided.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
nextToken
ListThingsRequest.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
ListThingsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return in this operation.
- Parameters:
maxResults
- The maximum number of results to return in this operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeName
ListThingsRequest.Builder attributeName(String attributeName)
The attribute name used to search for things.
- Parameters:
attributeName
- The attribute name used to search for things.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeValue
ListThingsRequest.Builder attributeValue(String attributeValue)
The attribute value used to search for things.
- Parameters:
attributeValue
- The attribute value used to search for things.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingTypeName
ListThingsRequest.Builder thingTypeName(String thingTypeName)
The name of the thing type used to search for things.
- Parameters:
thingTypeName
- The name of the thing type used to search for things.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
usePrefixAttributeValue
ListThingsRequest.Builder usePrefixAttributeValue(Boolean usePrefixAttributeValue)
When
true
, the action returns the thing resources with attribute values that start with theattributeValue
provided.When
false
, or not present, the action returns only the thing resources with attribute values that match the entireattributeValue
provided.- Parameters:
usePrefixAttributeValue
- Whentrue
, the action returns the thing resources with attribute values that start with theattributeValue
provided.When
false
, or not present, the action returns only the thing resources with attribute values that match the entireattributeValue
provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListThingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListThingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-