AWSIoTUpdateDimensionResponse

Objective-C

@interface AWSIoTUpdateDimensionResponse

Swift

class AWSIoTUpdateDimensionResponse
  • arn

    The Amazon Resource Name (ARN)of the created dimension.

    Declaration

    Objective-C

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

    Swift

    var arn: String? { get set }
  • The date and time, in milliseconds since epoch, when the dimension was initially created.

    Declaration

    Objective-C

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

    Swift

    var creationDate: Date? { get set }
  • The date and time, in milliseconds since epoch, when the dimension was most recently updated.

    Declaration

    Objective-C

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

    Swift

    var lastModifiedDate: Date? { get set }
  • A unique identifier for the dimension.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable stringValues;

    Swift

    var stringValues: [String]? { get set }
  • The type of the dimension.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTDimensionType types;

    Swift

    var types: AWSIoTDimensionType { get set }