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.BuilderattributeName(String attributeName)The attribute name used to search for things.ListThingsRequest.BuilderattributeValue(String attributeValue)The attribute value used to search for things.ListThingsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return in this operation.ListThingsRequest.BuildernextToken(String nextToken)To retrieve the next set of results, thenextTokenvalue from a previous response; otherwise null to receive the first set of results.ListThingsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListThingsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListThingsRequest.BuilderthingTypeName(String thingTypeName)The name of the thing type used to search for things.ListThingsRequest.BuilderusePrefixAttributeValue(Boolean usePrefixAttributeValue)Whentrue, the action returns the thing resources with attribute values that start with theattributeValueprovided.-
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
-
nextToken
ListThingsRequest.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.
-
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 theattributeValueprovided.When
false, or not present, the action returns only the thing resources with attribute values that match the entireattributeValueprovided.- Parameters:
usePrefixAttributeValue- Whentrue, the action returns the thing resources with attribute values that start with theattributeValueprovided.When
false, or not present, the action returns only the thing resources with attribute values that match the entireattributeValueprovided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListThingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListThingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-