Rectangle

public struct Rectangle : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Height of rectangle in pixels. Specify only even numbers.

    Declaration

    Swift

    public let height: Int?
  • Width of rectangle in pixels. Specify only even numbers.

    Declaration

    Swift

    public let width: Int?
  • x

    The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.

    Declaration

    Swift

    public let x: Int?
  • y

    The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.

    Declaration

    Swift

    public let y: Int?
  • Undocumented

    Declaration

    Swift

    public init(height: Int? = nil, width: Int? = nil, x: Int? = nil, y: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws