amazonka-kendra-2.0: Amazon KendraFrontendService SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Kendra.Types.DocumentAttributeTarget

Description

 
Synopsis

Documentation

data DocumentAttributeTarget Source #

The target document attribute or metadata field you want to alter when ingesting documents into Amazon Kendra.

For example, you can delete customer identification numbers associated with the documents, stored in the document metadata field called 'Customer_ID'. You set the target key as 'Customer_ID' and the deletion flag to TRUE. This removes all customer ID values in the field 'Customer_ID'. This would scrub personally identifiable information from each document's metadata.

Amazon Kendra cannot create a target field if it has not already been created as an index field. After you create your index field, you can create a document metadata field using DocumentAttributeTarget. Amazon Kendra then will map your newly created metadata field to your index field.

You can also use this with DocumentAttributeCondition.

See: newDocumentAttributeTarget smart constructor.

Constructors

DocumentAttributeTarget' 

Fields

  • targetDocumentAttributeKey :: Maybe Text

    The identifier of the target document attribute or metadata field.

    For example, 'Department' could be an identifier for the target attribute or metadata field that includes the department names associated with the documents.

  • targetDocumentAttributeValue :: Maybe DocumentAttributeValue

    The target value you want to create for the target attribute.

    For example, 'Finance' could be the target value for the target attribute key 'Department'.

  • targetDocumentAttributeValueDeletion :: Maybe Bool

    TRUE to delete the existing target value for your specified target attribute key. You cannot create a target value and set this to TRUE. To create a target value (TargetDocumentAttributeValue), set this to FALSE.

Instances

Instances details
FromJSON DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

ToJSON DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

Generic DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

Associated Types

type Rep DocumentAttributeTarget :: Type -> Type #

Read DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

Show DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

NFData DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

Methods

rnf :: DocumentAttributeTarget -> () #

Eq DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

Hashable DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

type Rep DocumentAttributeTarget Source # 
Instance details

Defined in Amazonka.Kendra.Types.DocumentAttributeTarget

type Rep DocumentAttributeTarget = D1 ('MetaData "DocumentAttributeTarget" "Amazonka.Kendra.Types.DocumentAttributeTarget" "amazonka-kendra-2.0-IHloXAWlYIS8YTp1gXe6J" 'False) (C1 ('MetaCons "DocumentAttributeTarget'" 'PrefixI 'True) (S1 ('MetaSel ('Just "targetDocumentAttributeKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "targetDocumentAttributeValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DocumentAttributeValue)) :*: S1 ('MetaSel ('Just "targetDocumentAttributeValueDeletion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newDocumentAttributeTarget :: DocumentAttributeTarget Source #

Create a value of DocumentAttributeTarget with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:targetDocumentAttributeKey:DocumentAttributeTarget', documentAttributeTarget_targetDocumentAttributeKey - The identifier of the target document attribute or metadata field.

For example, 'Department' could be an identifier for the target attribute or metadata field that includes the department names associated with the documents.

$sel:targetDocumentAttributeValue:DocumentAttributeTarget', documentAttributeTarget_targetDocumentAttributeValue - The target value you want to create for the target attribute.

For example, 'Finance' could be the target value for the target attribute key 'Department'.

$sel:targetDocumentAttributeValueDeletion:DocumentAttributeTarget', documentAttributeTarget_targetDocumentAttributeValueDeletion - TRUE to delete the existing target value for your specified target attribute key. You cannot create a target value and set this to TRUE. To create a target value (TargetDocumentAttributeValue), set this to FALSE.

documentAttributeTarget_targetDocumentAttributeKey :: Lens' DocumentAttributeTarget (Maybe Text) Source #

The identifier of the target document attribute or metadata field.

For example, 'Department' could be an identifier for the target attribute or metadata field that includes the department names associated with the documents.

documentAttributeTarget_targetDocumentAttributeValue :: Lens' DocumentAttributeTarget (Maybe DocumentAttributeValue) Source #

The target value you want to create for the target attribute.

For example, 'Finance' could be the target value for the target attribute key 'Department'.

documentAttributeTarget_targetDocumentAttributeValueDeletion :: Lens' DocumentAttributeTarget (Maybe Bool) Source #

TRUE to delete the existing target value for your specified target attribute key. You cannot create a target value and set this to TRUE. To create a target value (TargetDocumentAttributeValue), set this to FALSE.