AWSS3ListBucketInventoryConfigurationsOutput

Objective-C

@interface AWSS3ListBucketInventoryConfigurationsOutput

Swift

class AWSS3ListBucketInventoryConfigurationsOutput
  • If sent in the request, the marker that is used as a starting point for this inventory configuration list response.

    Declaration

    Objective-C

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

    Swift

    var continuationToken: String? { get set }
  • The list of inventory configurations for a bucket.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSS3InventoryConfiguration *> *_Nullable inventoryConfigurationList;

    Swift

    var inventoryConfigurationList: [AWSS3InventoryConfiguration]? { get set }
  • Tells whether the returned list of inventory configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken is provided for a subsequent request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable isTruncated;

    Swift

    var isTruncated: NSNumber? { get set }
  • The marker used to continue this inventory configuration listing. Use the NextContinuationToken from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.

    Declaration

    Objective-C

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

    Swift

    var nextContinuationToken: String? { get set }