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: