Interface ListPropertiesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPropertiesResponse.Builder,ListPropertiesResponse>,IoTTwinMakerResponse.Builder,SdkBuilder<ListPropertiesResponse.Builder,ListPropertiesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPropertiesResponse
public static interface ListPropertiesResponse.Builder extends IoTTwinMakerResponse.Builder, SdkPojo, CopyableBuilder<ListPropertiesResponse.Builder,ListPropertiesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPropertiesResponse.BuildernextToken(String nextToken)The string that specifies the next page of property results.ListPropertiesResponse.BuilderpropertySummaries(Collection<PropertySummary> propertySummaries)A list of objects that contain information about the properties.ListPropertiesResponse.BuilderpropertySummaries(Consumer<PropertySummary.Builder>... propertySummaries)A list of objects that contain information about the properties.ListPropertiesResponse.BuilderpropertySummaries(PropertySummary... propertySummaries)A list of objects that contain information about the properties.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iottwinmaker.model.IoTTwinMakerResponse.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
-
propertySummaries
ListPropertiesResponse.Builder propertySummaries(Collection<PropertySummary> propertySummaries)
A list of objects that contain information about the properties.
- Parameters:
propertySummaries- A list of objects that contain information about the properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertySummaries
ListPropertiesResponse.Builder propertySummaries(PropertySummary... propertySummaries)
A list of objects that contain information about the properties.
- Parameters:
propertySummaries- A list of objects that contain information about the properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertySummaries
ListPropertiesResponse.Builder propertySummaries(Consumer<PropertySummary.Builder>... propertySummaries)
A list of objects that contain information about the properties.
This is a convenience method that creates an instance of thePropertySummary.Builderavoiding the need to create one manually viaPropertySummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propertySummaries(List.) - Parameters:
propertySummaries- a consumer that will call methods onPropertySummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#propertySummaries(java.util.Collection)
-
nextToken
ListPropertiesResponse.Builder nextToken(String nextToken)
The string that specifies the next page of property results.
- Parameters:
nextToken- The string that specifies the next page of property results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-