Show / Hide Table of Contents

Class CfnIndex.ValueImportanceItemProperty

Specifies a key-value pair of the search boost value for a document when the key is part of the metadata of a document.

Inheritance
object
CfnIndex.ValueImportanceItemProperty
Implements
CfnIndex.IValueImportanceItemProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Kendra
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIndex.ValueImportanceItemProperty : CfnIndex.IValueImportanceItemProperty
Syntax (vb)
Public Class CfnIndex.ValueImportanceItemProperty Implements CfnIndex.IValueImportanceItemProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Kendra;

             var valueImportanceItemProperty = new ValueImportanceItemProperty {
                 Key = "key",
                 Value = 123
             };

Synopsis

Constructors

ValueImportanceItemProperty()

Specifies a key-value pair of the search boost value for a document when the key is part of the metadata of a document.

Properties

Key

The document metadata value used for the search boost.

Value

The boost value for a document when the key is part of the metadata of a document.

Constructors

ValueImportanceItemProperty()

Specifies a key-value pair of the search boost value for a document when the key is part of the metadata of a document.

public ValueImportanceItemProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Kendra;

             var valueImportanceItemProperty = new ValueImportanceItemProperty {
                 Key = "key",
                 Value = 123
             };

Properties

Key

The document metadata value used for the search boost.

public string? Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html#cfn-kendra-index-valueimportanceitem-key

Value

The boost value for a document when the key is part of the metadata of a document.

public double? Value { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html#cfn-kendra-index-valueimportanceitem-value

Implements

CfnIndex.IValueImportanceItemProperty
Back to top Generated by DocFX