Struct aws_sdk_wisdom::types::ContentData
source · #[non_exhaustive]pub struct ContentData {Show 14 fields
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>>,
pub link_out_uri: Option<String>,
pub url: Option<String>,
pub url_expiry: Option<DateTime>,
}
Expand description
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 content revision.
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.
link_out_uri: Option<String>
The URI of the content.
url: Option<String>
The URL of the content.
url_expiry: Option<DateTime>
The expiration time of the URL as an epoch timestamp.
Implementations§
source§impl ContentData
impl ContentData
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 content revision.
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.
sourcepub fn link_out_uri(&self) -> Option<&str>
pub fn link_out_uri(&self) -> Option<&str>
The URI of the content.
sourcepub fn url_expiry(&self) -> Option<&DateTime>
pub fn url_expiry(&self) -> Option<&DateTime>
The expiration time of the URL as an epoch timestamp.
source§impl ContentData
impl ContentData
sourcepub fn builder() -> ContentDataBuilder
pub fn builder() -> ContentDataBuilder
Creates a new builder-style object to manufacture ContentData
.
Trait Implementations§
source§impl Clone for ContentData
impl Clone for ContentData
source§fn clone(&self) -> ContentData
fn clone(&self) -> ContentData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ContentData
impl Debug for ContentData
source§impl PartialEq<ContentData> for ContentData
impl PartialEq<ContentData> for ContentData
source§fn eq(&self, other: &ContentData) -> bool
fn eq(&self, other: &ContentData) -> bool
self
and other
values to be equal, and is used
by ==
.