Class: Aws::RedshiftDataAPIService::Types::SubStatementData

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb

Overview

Information about an SQL statement.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#created_atTime

The date and time (UTC) the statement was created.

Returns:

  • (Time)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#durationInteger

The amount of time in nanoseconds that the statement ran.

Returns:

  • (Integer)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#errorString

The error message from the cluster if the SQL statement encountered an error while running.

Returns:

  • (String)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#has_result_setBoolean

A value that indicates whether the statement has a result set. The result set can be empty. The value is true for an empty result set.

Returns:

  • (Boolean)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The identifier of the SQL statement. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query.

Returns:

  • (String)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#query_stringString

The SQL statement text.

Returns:

  • (String)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#redshift_query_idInteger

The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.

Returns:

  • (Integer)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#result_rowsInteger

Either the number of rows returned from the SQL statement or the number of rows affected. If result size is greater than zero, the result rows can be the number of rows affected by SQL statements such as INSERT, UPDATE, DELETE, COPY, and others. A -1 indicates the value is null.

Returns:

  • (Integer)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#result_sizeInteger

The size in bytes of the returned results. A -1 indicates the value is null.

Returns:

  • (Integer)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the SQL statement. An example is the that the SQL statement finished.

Returns:

  • (String)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#updated_atTime

The date and time (UTC) that the statement metadata was last updated.

Returns:

  • (Time)


1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1350

class SubStatementData < Struct.new(
  :created_at,
  :duration,
  :error,
  :has_result_set,
  :id,
  :query_string,
  :redshift_query_id,
  :result_rows,
  :result_size,
  :status,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end