Interface CfnDataSource.DocumentAttributeValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.DocumentAttributeValueProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.DocumentAttributeValueProperty
extends software.amazon.jsii.JsiiSerializable
The value of a document attribute.
You can only provide one value for a document attribute.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kendra.*;
DocumentAttributeValueProperty documentAttributeValueProperty = DocumentAttributeValueProperty.builder()
.dateValue("dateValue")
.longValue(123)
.stringListValue(List.of("stringListValue"))
.stringValue("stringValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.DocumentAttributeValuePropertystatic final classAn implementation forCfnDataSource.DocumentAttributeValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateValue
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.
- See Also:
-
getLongValue
A long integer value.- See Also:
-
getStringListValue
A list of strings.The default maximum length or number of strings is 10.
- See Also:
-
getStringValue
A string, such as "department".- See Also:
-
builder
-