Interface UpdateDimensionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateDimensionResponse.Builder,UpdateDimensionResponse>,IotResponse.Builder,SdkBuilder<UpdateDimensionResponse.Builder,UpdateDimensionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateDimensionResponse
public static interface UpdateDimensionResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<UpdateDimensionResponse.Builder,UpdateDimensionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateDimensionResponse.Builderarn(String arn)The Amazon Resource Name (ARN)of the created dimension.UpdateDimensionResponse.BuildercreationDate(Instant creationDate)The date and time, in milliseconds since epoch, when the dimension was initially created.UpdateDimensionResponse.BuilderlastModifiedDate(Instant lastModifiedDate)The date and time, in milliseconds since epoch, when the dimension was most recently updated.UpdateDimensionResponse.Buildername(String name)A unique identifier for the dimension.UpdateDimensionResponse.BuilderstringValues(String... stringValues)The value or list of values used to scope the dimension.UpdateDimensionResponse.BuilderstringValues(Collection<String> stringValues)The value or list of values used to scope the dimension.UpdateDimensionResponse.Buildertype(String type)The type of the dimension.UpdateDimensionResponse.Buildertype(DimensionType type)The type of the dimension.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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
-
name
UpdateDimensionResponse.Builder name(String name)
A unique identifier for the dimension.
- Parameters:
name- A unique identifier for the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
UpdateDimensionResponse.Builder arn(String arn)
The Amazon Resource Name (ARN)of the created dimension.
- Parameters:
arn- The Amazon Resource Name (ARN)of the created dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
UpdateDimensionResponse.Builder type(String type)
The type of the dimension.
- Parameters:
type- The type of the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionType,DimensionType
-
type
UpdateDimensionResponse.Builder type(DimensionType type)
The type of the dimension.
- Parameters:
type- The type of the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DimensionType,DimensionType
-
stringValues
UpdateDimensionResponse.Builder stringValues(Collection<String> stringValues)
The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.
- Parameters:
stringValues- The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValues
UpdateDimensionResponse.Builder stringValues(String... stringValues)
The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.
- Parameters:
stringValues- The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
UpdateDimensionResponse.Builder creationDate(Instant creationDate)
The date and time, in milliseconds since epoch, when the dimension was initially created.
- Parameters:
creationDate- The date and time, in milliseconds since epoch, when the dimension was initially created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedDate
UpdateDimensionResponse.Builder lastModifiedDate(Instant lastModifiedDate)
The date and time, in milliseconds since epoch, when the dimension was most recently updated.
- Parameters:
lastModifiedDate- The date and time, in milliseconds since epoch, when the dimension was most recently updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-