AWSIoTUserProperty

Objective-C

@interface AWSIoTUserProperty

Swift

class AWSIoTUserProperty

A key-value pair that you define in the header. Both the key and the value are either literal strings or valid substitution templates.

Required parameters: [key, value]

  • key

    A key to be specified in UserProperty.

    Declaration

    Objective-C

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

    Swift

    var key: String? { get set }
  • A value to be specified in UserProperty.

    Declaration

    Objective-C

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

    Swift

    var value: String? { get set }