AWSIoTShadowOperationType
Objective-C
NS_ENUM(NSInteger, AWSIoTShadowOperationType) {
//
// NOTE: the first 4 values in this enum may not be re-ordered.
// It must align with the same order in AWSIoTShadowOperationTypeStrings
// An internal array in the implementation depends on their
// values and order.
//
AWSIoTShadowOperationTypeUpdate,
AWSIoTShadowOperationTypeGet,
AWSIoTShadowOperationTypeDelete,
AWSIoTShadowOperationTypeCount, // Internal class use only
AWSIoTShadowOperationTypeNone // Internal class use only
}
Swift
enum AWSIoTShadowOperationType : Int, @unchecked Sendable
Undocumented
-
Undocumented
Declaration
Objective-C
AWSIoTShadowOperationTypeUpdate
Swift
case update = 0
-
Undocumented
Declaration
Objective-C
AWSIoTShadowOperationTypeGet
Swift
case get = 1
-
Undocumented
Declaration
Objective-C
AWSIoTShadowOperationTypeDelete
Swift
case delete = 2
-
Undocumented
Declaration
Objective-C
AWSIoTShadowOperationTypeCount
Swift
case count = 3
-
Undocumented
Declaration
Objective-C
AWSIoTShadowOperationTypeNone
Swift
case none = 4