ExecuteStatementResponse
public struct ExecuteStatementResponse : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Metadata for the columns included in the results.
Declaration
Swift
public let columnMetadata: [ColumnMetadata]?
-
Values for fields generated during the request. <note> <p>The <code>generatedFields</code> data isn’t supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href=“https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note>
Declaration
Swift
public let generatedFields: [Field]?
-
The number of records updated by the request.
Declaration
Swift
public let numberOfRecordsUpdated: Int64?
-
The records returned by the SQL statement.
Declaration
Swift
public let records: [[Field]]?
-
Undocumented
Declaration
Swift
public init(columnMetadata: [ColumnMetadata]? = nil, generatedFields: [Field]? = nil, numberOfRecordsUpdated: Int64? = nil, records: [[Field]]? = nil)