Class: Aws::Textract::Types::NormalizedValue

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-textract/types.rb

Overview

Contains information relating to dates in a document, including the type of value, and the value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#valueString

The value of the date, written as Year-Month-DayTHour:Minute:Second.

Returns:

  • (String)


2374
2375
2376
2377
2378
2379
# File 'lib/aws-sdk-textract/types.rb', line 2374

class NormalizedValue < Struct.new(
  :value,
  :value_type)
  SENSITIVE = []
  include Aws::Structure
end

#value_typeString

The normalized type of the value detected. In this case, DATE.

Returns:

  • (String)


2374
2375
2376
2377
2378
2379
# File 'lib/aws-sdk-textract/types.rb', line 2374

class NormalizedValue < Struct.new(
  :value,
  :value_type)
  SENSITIVE = []
  include Aws::Structure
end