GetStatementResultResponse

public struct GetStatementResultResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The properties (metadata) of a column.

    Declaration

    Swift

    public let columnMetadata: [ColumnMetadata]?
  • A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.

    Declaration

    Swift

    public let nextToken: String?
  • The results of the SQL statement.

    Declaration

    Swift

    public let records: [[Field]]
  • The total number of rows in the result set returned from a query. You can use this number to estimate the number of calls to the GetStatementResult operation needed to page through the results.

    Declaration

    Swift

    public let totalNumRows: Int64?
  • Undocumented

    Declaration

    Swift

    public init(columnMetadata: [ColumnMetadata]? = nil, nextToken: String? = nil, records: [[Field]], totalNumRows: Int64? = nil)