AWSS3Transition
Objective-C
@interface AWSS3Transition
Swift
class AWSS3Transition
Specifies when an object transitions to a specified storage class. For more information about Amazon S3 lifecycle configuration rules, see Transitioning Objects Using Amazon S3 Lifecycle in the Amazon Simple Storage Service Developer Guide.
-
Indicates when objects are transitioned to the specified storage class. The date value must be in ISO 8601 format. The time is always midnight UTC.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable date;
Swift
var date: Date? { get set }
-
Indicates the number of days after creation when objects are transitioned to the specified storage class. The value must be a positive integer.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable days;
Swift
var days: NSNumber? { get set }
-
The storage class to which you want the object to transition.
Declaration
Objective-C
@property (nonatomic) AWSS3TransitionStorageClass storageClass;
Swift
var storageClass: AWSS3TransitionStorageClass { get set }