@aws-sdk/client-rds-data

ExecuteStatementCommandOutput Interface

Members

Name
Type
Details
$metadata RequiredResponseMetadata
Metadata pertaining to this request.
columnMetadata ColumnMetadata[] | undefined

Metadata for the columns included in the results. This field is blank if the formatRecordsAs parameter is set to JSON.

formattedRecords string | undefined

A string value that represents the result set of a SELECT statement in JSON format. This value is only present when the formatRecordsAs parameter is set to JSON.

The size limit for this field is currently 10 MB. If the JSON-formatted string representing the result set requires more than 10 MB, the call returns an error.

generatedFields Field[] | undefined

Values for fields generated during a DML request.

The generatedFields data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the RETURNING clause. For more information, see Returning Data From Modified Rows  in the PostgreSQL documentation.

numberOfRecordsUpdated number | undefined

The number of records updated by the request.

records Field[][] | undefined

The records returned by the SQL statement. This field is blank if the formatRecordsAs parameter is set to JSON.

Full Signature

export interface ExecuteStatementCommandOutput extends ExecuteStatementResponse, MetadataBearer