Interface DescribeDimensionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDimensionResponse.Builder,DescribeDimensionResponse>
,IotResponse.Builder
,SdkBuilder<DescribeDimensionResponse.Builder,DescribeDimensionResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDimensionResponse
public static interface DescribeDimensionResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<DescribeDimensionResponse.Builder,DescribeDimensionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDimensionResponse.Builder
arn(String arn)
The Amazon Resource Name (ARN) for the dimension.DescribeDimensionResponse.Builder
creationDate(Instant creationDate)
The date the dimension was created.DescribeDimensionResponse.Builder
lastModifiedDate(Instant lastModifiedDate)
The date the dimension was last modified.DescribeDimensionResponse.Builder
name(String name)
The unique identifier for the dimension.DescribeDimensionResponse.Builder
stringValues(String... stringValues)
The value or list of values used to scope the dimension.DescribeDimensionResponse.Builder
stringValues(Collection<String> stringValues)
The value or list of values used to scope the dimension.DescribeDimensionResponse.Builder
type(String type)
The type of the dimension.DescribeDimensionResponse.Builder
type(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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
name
DescribeDimensionResponse.Builder name(String name)
The unique identifier for the dimension.
- Parameters:
name
- The unique identifier for the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
DescribeDimensionResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) for the dimension.
- Parameters:
arn
- The Amazon Resource Name (ARN) for the dimension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
DescribeDimensionResponse.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
DescribeDimensionResponse.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
DescribeDimensionResponse.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
DescribeDimensionResponse.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
DescribeDimensionResponse.Builder creationDate(Instant creationDate)
The date the dimension was created.
- Parameters:
creationDate
- The date the dimension was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedDate
DescribeDimensionResponse.Builder lastModifiedDate(Instant lastModifiedDate)
The date the dimension was last modified.
- Parameters:
lastModifiedDate
- The date the dimension was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-