Class: Aws::Kendra::Types::DocumentAttributeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::DocumentAttributeValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
The value of a document attribute. You can only provide one value for a document attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_value ⇒ Time
A date expressed as an ISO 8601 string.
-
#long_value ⇒ Integer
A long integer value.
-
#string_list_value ⇒ Array<String>
A list of strings.
-
#string_value ⇒ String
A string, such as “department”.
Instance Attribute Details
#date_value ⇒ Time
A date expressed as an ISO 8601 string.
It is important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
4667 4668 4669 4670 4671 4672 4673 4674 |
# File 'lib/aws-sdk-kendra/types.rb', line 4667 class DocumentAttributeValue < Struct.new( :string_value, :string_list_value, :long_value, :date_value) SENSITIVE = [] include Aws::Structure end |
#long_value ⇒ Integer
A long integer value.
4667 4668 4669 4670 4671 4672 4673 4674 |
# File 'lib/aws-sdk-kendra/types.rb', line 4667 class DocumentAttributeValue < Struct.new( :string_value, :string_list_value, :long_value, :date_value) SENSITIVE = [] include Aws::Structure end |
#string_list_value ⇒ Array<String>
A list of strings. The default maximum length or number of strings is 10.
4667 4668 4669 4670 4671 4672 4673 4674 |
# File 'lib/aws-sdk-kendra/types.rb', line 4667 class DocumentAttributeValue < Struct.new( :string_value, :string_list_value, :long_value, :date_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
A string, such as “department”.
4667 4668 4669 4670 4671 4672 4673 4674 |
# File 'lib/aws-sdk-kendra/types.rb', line 4667 class DocumentAttributeValue < Struct.new( :string_value, :string_list_value, :long_value, :date_value) SENSITIVE = [] include Aws::Structure end |