AWSIoTThingTypeDefinition

Objective-C

@interface AWSIoTThingTypeDefinition

Swift

class AWSIoTThingTypeDefinition

The definition of the thing type, including thing type name and description.

  • The thing type ARN.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable thingTypeArn;

    Swift

    var thingTypeArn: String? { get set }
  • 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 it was deprecated.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTThingTypeMetadata *_Nullable thingTypeMetadata;

    Swift

    var thingTypeMetadata: AWSIoTThingTypeMetadata? { get set }
  • The name of the thing type.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable thingTypeName;

    Swift

    var thingTypeName: String? { get set }
  • The ThingTypeProperties for the thing type.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTThingTypeProperties *_Nullable thingTypeProperties;

    Swift

    var thingTypeProperties: AWSIoTThingTypeProperties? { get set }