Interface ThingTypeMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ThingTypeMetadata.Builder,ThingTypeMetadata>,SdkBuilder<ThingTypeMetadata.Builder,ThingTypeMetadata>,SdkPojo
- Enclosing class:
- ThingTypeMetadata
public static interface ThingTypeMetadata.Builder extends SdkPojo, CopyableBuilder<ThingTypeMetadata.Builder,ThingTypeMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThingTypeMetadata.BuildercreationDate(Instant creationDate)The date and time when the thing type was created.ThingTypeMetadata.Builderdeprecated(Boolean deprecated)Whether the thing type is deprecated.ThingTypeMetadata.BuilderdeprecationDate(Instant deprecationDate)The date and time when the thing type was deprecated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
deprecated
ThingTypeMetadata.Builder deprecated(Boolean deprecated)
Whether the thing type is deprecated. If true, no new things could be associated with this type.
- Parameters:
deprecated- Whether the thing type is deprecated. If true, no new things could be associated with this type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deprecationDate
ThingTypeMetadata.Builder deprecationDate(Instant deprecationDate)
The date and time when the thing type was deprecated.
- Parameters:
deprecationDate- The date and time when the thing type was deprecated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
ThingTypeMetadata.Builder creationDate(Instant creationDate)
The date and time when the thing type was created.
- Parameters:
creationDate- The date and time when the thing type was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-