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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndex.DocumentAttributeConfigurationPropertystatic final classAn implementation forCfnIndex.DocumentAttributeConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()The name of the document attribute.default StringInformation about whether the document attribute can be used by an end user to search for information on their web experience.default StringgetType()The type of document attribute.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the document attribute.- See Also:
-
getSearch
Information about whether the document attribute can be used by an end user to search for information on their web experience.- See Also:
-
getType
The type of document attribute.- See Also:
-
builder
-