#[non_exhaustive]pub struct ConfluenceAttachmentConfiguration {
pub crawl_attachments: bool,
pub attachment_field_mappings: Option<Vec<ConfluenceAttachmentToIndexFieldMapping>>,
}Expand description
Configuration of attachment settings for the Confluence data source. Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.crawl_attachments: boolTRUE to index attachments of pages and blogs in Confluence.
attachment_field_mappings: Option<Vec<ConfluenceAttachmentToIndexFieldMapping>>Maps attributes or field names of Confluence attachments to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Confluence fields. For more information, see Mapping data source fields. The Confluence data source field names must exist in your Confluence custom metadata.
If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.
Implementations§
source§impl ConfluenceAttachmentConfiguration
impl ConfluenceAttachmentConfiguration
sourcepub fn crawl_attachments(&self) -> bool
pub fn crawl_attachments(&self) -> bool
TRUE to index attachments of pages and blogs in Confluence.
sourcepub fn attachment_field_mappings(
&self
) -> &[ConfluenceAttachmentToIndexFieldMapping]
pub fn attachment_field_mappings( &self ) -> &[ConfluenceAttachmentToIndexFieldMapping]
Maps attributes or field names of Confluence attachments to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Confluence fields. For more information, see Mapping data source fields. The Confluence data source field names must exist in your Confluence custom metadata.
If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .attachment_field_mappings.is_none().
source§impl ConfluenceAttachmentConfiguration
impl ConfluenceAttachmentConfiguration
sourcepub fn builder() -> ConfluenceAttachmentConfigurationBuilder
pub fn builder() -> ConfluenceAttachmentConfigurationBuilder
Creates a new builder-style object to manufacture ConfluenceAttachmentConfiguration.
Trait Implementations§
source§impl Clone for ConfluenceAttachmentConfiguration
impl Clone for ConfluenceAttachmentConfiguration
source§fn clone(&self) -> ConfluenceAttachmentConfiguration
fn clone(&self) -> ConfluenceAttachmentConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ConfluenceAttachmentConfiguration
impl PartialEq for ConfluenceAttachmentConfiguration
source§fn eq(&self, other: &ConfluenceAttachmentConfiguration) -> bool
fn eq(&self, other: &ConfluenceAttachmentConfiguration) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConfluenceAttachmentConfiguration
Auto Trait Implementations§
impl Freeze for ConfluenceAttachmentConfiguration
impl RefUnwindSafe for ConfluenceAttachmentConfiguration
impl Send for ConfluenceAttachmentConfiguration
impl Sync for ConfluenceAttachmentConfiguration
impl Unpin for ConfluenceAttachmentConfiguration
impl UnwindSafe for ConfluenceAttachmentConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more