AWSS3ListBucketMetricsConfigurationsOutput

Objective-C

@interface AWSS3ListBucketMetricsConfigurationsOutput

Swift

class AWSS3ListBucketMetricsConfigurationsOutput
  • The marker that is used as a starting point for this metrics configuration list response. This value is present if it was sent in the request.

    Declaration

    Objective-C

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

    Swift

    var continuationToken: String? { get set }
  • Indicates whether the returned list of metrics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.

    Declaration

    Objective-C

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

    Swift

    var isTruncated: NSNumber? { get set }
  • The list of metrics configurations for a bucket.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSS3MetricsConfiguration *> *_Nullable metricsConfigurationList;

    Swift

    var metricsConfigurationList: [AWSS3MetricsConfiguration]? { get set }
  • The marker used to continue a metrics configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. 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 }