Class: Aws::DSQL::Types::StatusReason

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

Overview

Stream status reason with error and timestamp.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#errorString

The error code for the stream failure.

Returns:

  • (String)


965
966
967
968
969
970
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 965

class StatusReason < Struct.new(
  :error,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#updated_atTime

The timestamp when the status was updated.

Returns:

  • (Time)


965
966
967
968
969
970
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 965

class StatusReason < Struct.new(
  :error,
  :updated_at)
  SENSITIVE = []
  include Aws::Structure
end