Interface GetPropertyValueHistoryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetPropertyValueHistoryResponse.Builder,GetPropertyValueHistoryResponse>,IoTTwinMakerResponse.Builder,SdkBuilder<GetPropertyValueHistoryResponse.Builder,GetPropertyValueHistoryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetPropertyValueHistoryResponse
public static interface GetPropertyValueHistoryResponse.Builder extends IoTTwinMakerResponse.Builder, SdkPojo, CopyableBuilder<GetPropertyValueHistoryResponse.Builder,GetPropertyValueHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetPropertyValueHistoryResponse.BuildernextToken(String nextToken)The string that specifies the next page of results.GetPropertyValueHistoryResponse.BuilderpropertyValues(Collection<PropertyValueHistory> propertyValues)An object that maps strings to the property definitions in the component type.GetPropertyValueHistoryResponse.BuilderpropertyValues(Consumer<PropertyValueHistory.Builder>... propertyValues)An object that maps strings to the property definitions in the component type.GetPropertyValueHistoryResponse.BuilderpropertyValues(PropertyValueHistory... propertyValues)An object that maps strings to the property definitions in the component type.-
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
-
propertyValues
GetPropertyValueHistoryResponse.Builder propertyValues(Collection<PropertyValueHistory> propertyValues)
An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
- Parameters:
propertyValues- An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyValues
GetPropertyValueHistoryResponse.Builder propertyValues(PropertyValueHistory... propertyValues)
An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
- Parameters:
propertyValues- An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyValues
GetPropertyValueHistoryResponse.Builder propertyValues(Consumer<PropertyValueHistory.Builder>... propertyValues)
An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
This is a convenience method that creates an instance of thePropertyValueHistory.Builderavoiding the need to create one manually viaPropertyValueHistory.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propertyValues(List.) - Parameters:
propertyValues- a consumer that will call methods onPropertyValueHistory.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#propertyValues(java.util.Collection)
-
nextToken
GetPropertyValueHistoryResponse.Builder nextToken(String nextToken)
The string that specifies the next page of results.
- Parameters:
nextToken- The string that specifies the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-