Interface CfnIndex.ValueImportanceItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIndex.ValueImportanceItemProperty.Jsii$Proxy
- Enclosing class:
- CfnIndex
@Stability(Stable)
public static interface CfnIndex.ValueImportanceItemProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a key-value pair of the search boost value for a document when the key is part of the metadata of a document.
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.*;
ValueImportanceItemProperty valueImportanceItemProperty = ValueImportanceItemProperty.builder()
.key("key")
.value(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndex.ValueImportanceItemPropertystatic final classAn implementation forCfnIndex.ValueImportanceItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The document metadata value used for the search boost. -
getValue
The boost value for a document when the key is part of the metadata of a document. -
builder
-