DistributionIdList

public struct DistributionIdList : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

    Declaration

    Swift

    public let isTruncated: Bool
  • Contains the distribution IDs in the list.

    Declaration

    Swift

    public let items: [String]?
  • The value provided in the Marker request field.

    Declaration

    Swift

    public let marker: String
  • The maximum number of distribution IDs requested.

    Declaration

    Swift

    public let maxItems: Int
  • Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

    Declaration

    Swift

    public let nextMarker: String?
  • The total number of distribution IDs returned in the response.

    Declaration

    Swift

    public let quantity: Int
  • Undocumented

    Declaration

    Swift

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