Interface CfnIndex.DocumentAttributeConfigurationProperty

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

@Stability(Stable) public static interface CfnIndex.DocumentAttributeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration information for document attributes.

Document attributes are metadata or fields associated with your documents. For example, the company department name associated with each document.

For more information, see Understanding document attributes .

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.*;
 DocumentAttributeConfigurationProperty documentAttributeConfigurationProperty = DocumentAttributeConfigurationProperty.builder()
         .name("name")
         .search("search")
         .type("type")
         .build();
 

See Also: