ListBucketMetricsConfigurationsOutput

public struct ListBucketMetricsConfigurationsOutput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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

    Swift

    public let continuationToken: String?
  • 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

    Swift

    public let isTruncated: Bool?
  • The list of metrics configurations for a bucket.

    Declaration

    Swift

    public let metricsConfigurationList: [MetricsConfiguration]?
  • 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

    Swift

    public let nextContinuationToken: String?
  • Undocumented

    Declaration

    Swift

    public init(continuationToken: String? = nil, isTruncated: Bool? = nil, metricsConfigurationList: [MetricsConfiguration]? = nil, nextContinuationToken: String? = nil)