StreamingDistributionList

public struct StreamingDistributionList : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A flag that indicates whether more streaming 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 StreamingDistributionSummary element for each distribution that was created by the current AWS account.

    Declaration

    Swift

    public let items: [StreamingDistributionSummary]?
  • 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 RTMP distributions where they left off.

    Declaration

    Swift

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

    Declaration

    Swift

    public let quantity: Int
  • Undocumented

    Declaration

    Swift

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