Interface BatchPutPropertyValuesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<BatchPutPropertyValuesRequest.Builder,BatchPutPropertyValuesRequest>,IoTTwinMakerRequest.Builder,SdkBuilder<BatchPutPropertyValuesRequest.Builder,BatchPutPropertyValuesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchPutPropertyValuesRequest
public static interface BatchPutPropertyValuesRequest.Builder extends IoTTwinMakerRequest.Builder, SdkPojo, CopyableBuilder<BatchPutPropertyValuesRequest.Builder,BatchPutPropertyValuesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchPutPropertyValuesRequest.Builderentries(Collection<PropertyValueEntry> entries)An object that maps strings to the property value entries to set.BatchPutPropertyValuesRequest.Builderentries(Consumer<PropertyValueEntry.Builder>... entries)An object that maps strings to the property value entries to set.BatchPutPropertyValuesRequest.Builderentries(PropertyValueEntry... entries)An object that maps strings to the property value entries to set.BatchPutPropertyValuesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchPutPropertyValuesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)BatchPutPropertyValuesRequest.BuilderworkspaceId(String workspaceId)The ID of the workspace that contains the properties to set.-
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.iottwinmaker.model.IoTTwinMakerRequest.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
-
workspaceId
BatchPutPropertyValuesRequest.Builder workspaceId(String workspaceId)
The ID of the workspace that contains the properties to set.
- Parameters:
workspaceId- The ID of the workspace that contains the properties to set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
BatchPutPropertyValuesRequest.Builder entries(Collection<PropertyValueEntry> entries)
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
- Parameters:
entries- An object that maps strings to the property value entries to set. 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.
-
entries
BatchPutPropertyValuesRequest.Builder entries(PropertyValueEntry... entries)
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
- Parameters:
entries- An object that maps strings to the property value entries to set. 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.
-
entries
BatchPutPropertyValuesRequest.Builder entries(Consumer<PropertyValueEntry.Builder>... entries)
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
This is a convenience method that creates an instance of thePropertyValueEntry.Builderavoiding the need to create one manually viaPropertyValueEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onPropertyValueEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
overrideConfiguration
BatchPutPropertyValuesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchPutPropertyValuesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-