Interface UpdateDimensionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateDimensionRequest.Builder,UpdateDimensionRequest>
,IotRequest.Builder
,SdkBuilder<UpdateDimensionRequest.Builder,UpdateDimensionRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateDimensionRequest
public static interface UpdateDimensionRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<UpdateDimensionRequest.Builder,UpdateDimensionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateDimensionRequest.Builder
name(String name)
A unique identifier for the dimension.UpdateDimensionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateDimensionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
UpdateDimensionRequest.Builder
stringValues(String... stringValues)
Specifies the value or list of values for the dimension.UpdateDimensionRequest.Builder
stringValues(Collection<String> stringValues)
Specifies the value or list of values for the dimension.-
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
-
name
UpdateDimensionRequest.Builder name(String name)
A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.
- Parameters:
name
- A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValues
UpdateDimensionRequest.Builder stringValues(Collection<String> stringValues)
Specifies the value or list of values for the dimension. For
TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").- Parameters:
stringValues
- Specifies the value or list of values for the dimension. ForTOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValues
UpdateDimensionRequest.Builder stringValues(String... stringValues)
Specifies the value or list of values for the dimension. For
TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").- Parameters:
stringValues
- Specifies the value or list of values for the dimension. ForTOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateDimensionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateDimensionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-