AWSIoTThingTypeMetadata

Objective-C

@interface AWSIoTThingTypeMetadata

Swift

class AWSIoTThingTypeMetadata

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when time was deprecated.

  • The date and time when the thing type was created.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable creationDate;

    Swift

    var creationDate: Date? { get set }
  • Whether the thing type is deprecated. If true, no new things could be associated with this type.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable deprecated;

    Swift

    var deprecated: NSNumber? { get set }
  • The date and time when the thing type was deprecated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable deprecationDate;

    Swift

    var deprecationDate: Date? { get set }