AWSIoTCreateThingTypeRequest

Objective-C

@interface AWSIoTCreateThingTypeRequest

Swift

class AWSIoTCreateThingTypeRequest

The input for the CreateThingType operation.

Required parameters: [thingTypeName]

  • Metadata which can be used to manage the thing type.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSIoTTag *> *_Nullable tags;

    Swift

    var tags: [AWSIoTTag]? { 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 to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.

    Declaration

    Objective-C

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

    Swift

    var thingTypeProperties: AWSIoTThingTypeProperties? { get set }