Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.InlineCustomDocumentEnrichmentConfigurationProperty

Provides the configuration information for applying basic logic to alter document metadata and content when ingesting documents into Amazon Kendra.

Inheritance
object
CfnDataSourcePropsMixin.InlineCustomDocumentEnrichmentConfigurationProperty
Implements
CfnDataSourcePropsMixin.IInlineCustomDocumentEnrichmentConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Kendra
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.InlineCustomDocumentEnrichmentConfigurationProperty : CfnDataSourcePropsMixin.IInlineCustomDocumentEnrichmentConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.InlineCustomDocumentEnrichmentConfigurationProperty Implements CfnDataSourcePropsMixin.IInlineCustomDocumentEnrichmentConfigurationProperty
Remarks

To apply advanced logic, to go beyond what you can do with basic logic, see HookConfiguration .

For more information, see Customizing document metadata during the ingestion process .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-inlinecustomdocumentenrichmentconfiguration.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.CfnPropertyMixins.AWS.Kendra;

             var inlineCustomDocumentEnrichmentConfigurationProperty = new InlineCustomDocumentEnrichmentConfigurationProperty {
                 Condition = new DocumentAttributeConditionProperty {
                     ConditionDocumentAttributeKey = "conditionDocumentAttributeKey",
                     ConditionOnValue = new DocumentAttributeValueProperty {
                         DateValue = "dateValue",
                         LongValue = 123,
                         StringListValue = new [] { "stringListValue" },
                         StringValue = "stringValue"
                     },
                     Operator = "operator"
                 },
                 DocumentContentDeletion = false,
                 Target = new DocumentAttributeTargetProperty {
                     TargetDocumentAttributeKey = "targetDocumentAttributeKey",
                     TargetDocumentAttributeValue = new DocumentAttributeValueProperty {
                         DateValue = "dateValue",
                         LongValue = 123,
                         StringListValue = new [] { "stringListValue" },
                         StringValue = "stringValue"
                     },
                     TargetDocumentAttributeValueDeletion = false
                 }
             };

Synopsis

Constructors

InlineCustomDocumentEnrichmentConfigurationProperty()

Provides the configuration information for applying basic logic to alter document metadata and content when ingesting documents into Amazon Kendra.

Properties

Condition

Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Kendra.

DocumentContentDeletion

TRUE to delete content if the condition used for the target attribute is met.

Target

Configuration of the target document attribute or metadata field when ingesting documents into Amazon Kendra.

Constructors

InlineCustomDocumentEnrichmentConfigurationProperty()

Provides the configuration information for applying basic logic to alter document metadata and content when ingesting documents into Amazon Kendra.

public InlineCustomDocumentEnrichmentConfigurationProperty()
Remarks

To apply advanced logic, to go beyond what you can do with basic logic, see HookConfiguration .

For more information, see Customizing document metadata during the ingestion process .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-inlinecustomdocumentenrichmentconfiguration.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.CfnPropertyMixins.AWS.Kendra;

             var inlineCustomDocumentEnrichmentConfigurationProperty = new InlineCustomDocumentEnrichmentConfigurationProperty {
                 Condition = new DocumentAttributeConditionProperty {
                     ConditionDocumentAttributeKey = "conditionDocumentAttributeKey",
                     ConditionOnValue = new DocumentAttributeValueProperty {
                         DateValue = "dateValue",
                         LongValue = 123,
                         StringListValue = new [] { "stringListValue" },
                         StringValue = "stringValue"
                     },
                     Operator = "operator"
                 },
                 DocumentContentDeletion = false,
                 Target = new DocumentAttributeTargetProperty {
                     TargetDocumentAttributeKey = "targetDocumentAttributeKey",
                     TargetDocumentAttributeValue = new DocumentAttributeValueProperty {
                         DateValue = "dateValue",
                         LongValue = 123,
                         StringListValue = new [] { "stringListValue" },
                         StringValue = "stringValue"
                     },
                     TargetDocumentAttributeValueDeletion = false
                 }
             };

Properties

Condition

Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Kendra.

public object? Condition { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-inlinecustomdocumentenrichmentconfiguration.html#cfn-kendra-datasource-inlinecustomdocumentenrichmentconfiguration-condition

Type union: either IResolvable or CfnDataSourcePropsMixin.IDocumentAttributeConditionProperty

DocumentContentDeletion

TRUE to delete content if the condition used for the target attribute is met.

public object? DocumentContentDeletion { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-inlinecustomdocumentenrichmentconfiguration.html#cfn-kendra-datasource-inlinecustomdocumentenrichmentconfiguration-documentcontentdeletion

Type union: either bool or IResolvable

Target

Configuration of the target document attribute or metadata field when ingesting documents into Amazon Kendra.

public object? Target { get; set; }
Property Value

object

Remarks

You can also include a value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-inlinecustomdocumentenrichmentconfiguration.html#cfn-kendra-datasource-inlinecustomdocumentenrichmentconfiguration-target

Type union: either IResolvable or CfnDataSourcePropsMixin.IDocumentAttributeTargetProperty

Implements

CfnDataSourcePropsMixin.IInlineCustomDocumentEnrichmentConfigurationProperty
Back to top Generated by DocFX