AWSS3Rule

Objective-C

@interface AWSS3Rule

Swift

class AWSS3Rule

Specifies lifecycle rules for an Amazon S3 bucket. For more information, see Put Bucket Lifecycle Configuration in the Amazon Simple Storage Service API Reference. For examples, see Put Bucket Lifecycle Configuration Examples

Required parameters: [Prefix, Status]

  • Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload. For more information, see Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Policy in the Amazon Simple Storage Service Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3AbortIncompleteMultipartUpload *_Nullable abortIncompleteMultipartUpload;

    Swift

    var abortIncompleteMultipartUpload: AWSS3AbortIncompleteMultipartUpload? { get set }
  • Specifies the expiration for the lifecycle of the object.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3LifecycleExpiration *_Nullable expiration;

    Swift

    var expiration: AWSS3LifecycleExpiration? { get set }
  • Unique identifier for the rule. The value can’t be longer than 255 characters.

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object’s lifetime.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3NoncurrentVersionExpiration *_Nullable noncurrentVersionExpiration;

    Swift

    var noncurrentVersionExpiration: AWSS3NoncurrentVersionExpiration? { get set }
  • Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, or DEEP_ARCHIVE storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, or DEEP_ARCHIVE storage class at a specific period in the object’s lifetime.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3NoncurrentVersionTransition *_Nullable noncurrentVersionTransition;

    Swift

    var noncurrentVersionTransition: AWSS3NoncurrentVersionTransition? { get set }
  • Object key prefix that identifies one or more objects to which this rule applies.

    Declaration

    Objective-C

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

    Swift

    var prefix: String? { get set }
  • If Enabled, the rule is currently being applied. If Disabled, the rule is not currently being applied.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3ExpirationStatus status;

    Swift

    var status: AWSS3ExpirationStatus { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3Transition *_Nullable transition;

    Swift

    var transition: AWSS3Transition? { get set }