Struct aws_sdk_wisdom::types::ContentSummary
source · #[non_exhaustive]pub struct ContentSummary {
pub content_arn: Option<String>,
pub content_id: Option<String>,
pub knowledge_base_arn: Option<String>,
pub knowledge_base_id: Option<String>,
pub name: Option<String>,
pub revision_id: Option<String>,
pub title: Option<String>,
pub content_type: Option<String>,
pub status: Option<ContentStatus>,
pub metadata: Option<HashMap<String, String>>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Summary information about the content.
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.content_arn: Option<String>
The Amazon Resource Name (ARN) of the content.
content_id: Option<String>
The identifier of the content.
knowledge_base_arn: Option<String>
The Amazon Resource Name (ARN) of the knowledge base.
knowledge_base_id: Option<String>
The identifier of the knowledge base.
name: Option<String>
The name of the content.
revision_id: Option<String>
The identifier of the revision of the content.
title: Option<String>
The title of the content.
content_type: Option<String>
The media type of the content.
status: Option<ContentStatus>
The status of the content.
metadata: Option<HashMap<String, String>>
A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.
The tags used to organize, track, or control access for this resource.
Implementations§
source§impl ContentSummary
impl ContentSummary
sourcepub fn content_arn(&self) -> Option<&str>
pub fn content_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the content.
sourcepub fn content_id(&self) -> Option<&str>
pub fn content_id(&self) -> Option<&str>
The identifier of the content.
sourcepub fn knowledge_base_arn(&self) -> Option<&str>
pub fn knowledge_base_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the knowledge base.
sourcepub fn knowledge_base_id(&self) -> Option<&str>
pub fn knowledge_base_id(&self) -> Option<&str>
The identifier of the knowledge base.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
The identifier of the revision of the content.
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
The media type of the content.
sourcepub fn status(&self) -> Option<&ContentStatus>
pub fn status(&self) -> Option<&ContentStatus>
The status of the content.
sourcepub fn metadata(&self) -> Option<&HashMap<String, String>>
pub fn metadata(&self) -> Option<&HashMap<String, String>>
A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.
The tags used to organize, track, or control access for this resource.
source§impl ContentSummary
impl ContentSummary
sourcepub fn builder() -> ContentSummaryBuilder
pub fn builder() -> ContentSummaryBuilder
Creates a new builder-style object to manufacture ContentSummary
.
Trait Implementations§
source§impl Clone for ContentSummary
impl Clone for ContentSummary
source§fn clone(&self) -> ContentSummary
fn clone(&self) -> ContentSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ContentSummary
impl Debug for ContentSummary
source§impl PartialEq<ContentSummary> for ContentSummary
impl PartialEq<ContentSummary> for ContentSummary
source§fn eq(&self, other: &ContentSummary) -> bool
fn eq(&self, other: &ContentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.