DistributionList

public struct DistributionList : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.

    Declaration

    Swift

    public let isTruncated: Bool
  • A complex type that contains one DistributionSummary element for each distribution that was created by the current AWS account.

    Declaration

    Swift

    public let items: [DistributionSummary]?
  • The value you provided for the Marker request parameter.

    Declaration

    Swift

    public let marker: String
  • The value you provided for the MaxItems request parameter.

    Declaration

    Swift

    public let maxItems: Int
  • If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off.

    Declaration

    Swift

    public let nextMarker: String?
  • The number of distributions that were created by the current AWS account.

    Declaration

    Swift

    public let quantity: Int
  • Undocumented

    Declaration

    Swift

    public init(isTruncated: Bool, items: [DistributionSummary]? = nil, marker: String, maxItems: Int, nextMarker: String? = nil, quantity: Int)