Class: Aws::Kendra::Types::DocumentAttributeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::DocumentAttributeValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass DocumentAttributeValue data as a hash:
{
string_value: "DocumentAttributeStringValue",
string_list_value: ["String"],
long_value: 1,
date_value: Time.now,
}
The value of a custom document attribute. You can only provide one value for a custom 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.
3359 3360 3361 3362 3363 3364 3365 3366 |
# File 'lib/aws-sdk-kendra/types.rb', line 3359 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.
3359 3360 3361 3362 3363 3364 3365 3366 |
# File 'lib/aws-sdk-kendra/types.rb', line 3359 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.
3359 3360 3361 3362 3363 3364 3365 3366 |
# File 'lib/aws-sdk-kendra/types.rb', line 3359 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”.
3359 3360 3361 3362 3363 3364 3365 3366 |
# File 'lib/aws-sdk-kendra/types.rb', line 3359 class DocumentAttributeValue < Struct.new( :string_value, :string_list_value, :long_value, :date_value) SENSITIVE = [] include Aws::Structure end |