Class CfnIndex.DocumentAttributeConfigurationProperty
Configuration information for document attributes.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QBusiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIndex.DocumentAttributeConfigurationProperty : CfnIndex.IDocumentAttributeConfigurationProperty
Syntax (vb)
Public Class CfnIndex.DocumentAttributeConfigurationProperty Implements CfnIndex.IDocumentAttributeConfigurationProperty
Remarks
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 .
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.QBusiness;
var documentAttributeConfigurationProperty = new DocumentAttributeConfigurationProperty {
Name = "name",
Search = "search",
Type = "type"
};
Synopsis
Constructors
| DocumentAttributeConfigurationProperty() | Configuration information for document attributes. |
Properties
| Name | The name of the document attribute. |
| Search | Information about whether the document attribute can be used by an end user to search for information on their web experience. |
| Type | The type of document attribute. |
Constructors
DocumentAttributeConfigurationProperty()
Configuration information for document attributes.
public DocumentAttributeConfigurationProperty()
Remarks
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 .
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.QBusiness;
var documentAttributeConfigurationProperty = new DocumentAttributeConfigurationProperty {
Name = "name",
Search = "search",
Type = "type"
};
Properties
Name
The name of the document attribute.
public string? Name { get; set; }
Property Value
Remarks
Search
Information about whether the document attribute can be used by an end user to search for information on their web experience.
public string? Search { get; set; }
Property Value
Remarks
Type
The type of document attribute.
public string? Type { get; set; }