Interface CfnDataAccessor.DocumentAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataAccessor.DocumentAttributeProperty.Jsii$Proxy
Enclosing class:
CfnDataAccessor

@Stability(Stable) public static interface CfnDataAccessor.DocumentAttributeProperty extends software.amazon.jsii.JsiiSerializable
A document attribute or metadata field.

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.qbusiness.*;
 DocumentAttributeProperty documentAttributeProperty = DocumentAttributeProperty.builder()
         .name("name")
         .value(DocumentAttributeValueProperty.builder()
                 .dateValue("dateValue")
                 .longValue(123)
                 .stringListValue(List.of("stringListValue"))
                 .stringValue("stringValue")
                 .build())
         .build();
 

See Also: