Struct aws_sdk_sagemaker::types::HubContentInfo
source · #[non_exhaustive]pub struct HubContentInfo { /* private fields */ }
Expand description
Information about hub content.
Implementations§
source§impl HubContentInfo
impl HubContentInfo
sourcepub fn hub_content_name(&self) -> Option<&str>
pub fn hub_content_name(&self) -> Option<&str>
The name of the hub content.
sourcepub fn hub_content_arn(&self) -> Option<&str>
pub fn hub_content_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the hub content.
sourcepub fn hub_content_version(&self) -> Option<&str>
pub fn hub_content_version(&self) -> Option<&str>
The version of the hub content.
sourcepub fn hub_content_type(&self) -> Option<&HubContentType>
pub fn hub_content_type(&self) -> Option<&HubContentType>
The type of hub content.
sourcepub fn document_schema_version(&self) -> Option<&str>
pub fn document_schema_version(&self) -> Option<&str>
The version of the hub content document schema.
sourcepub fn hub_content_display_name(&self) -> Option<&str>
pub fn hub_content_display_name(&self) -> Option<&str>
The display name of the hub content.
sourcepub fn hub_content_description(&self) -> Option<&str>
pub fn hub_content_description(&self) -> Option<&str>
A description of the hub content.
sourcepub fn hub_content_search_keywords(&self) -> Option<&[String]>
pub fn hub_content_search_keywords(&self) -> Option<&[String]>
The searchable keywords for the hub content.
sourcepub fn hub_content_status(&self) -> Option<&HubContentStatus>
pub fn hub_content_status(&self) -> Option<&HubContentStatus>
The status of the hub content.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time that the hub content was created.
source§impl HubContentInfo
impl HubContentInfo
sourcepub fn builder() -> HubContentInfoBuilder
pub fn builder() -> HubContentInfoBuilder
Creates a new builder-style object to manufacture HubContentInfo
.
Trait Implementations§
source§impl Clone for HubContentInfo
impl Clone for HubContentInfo
source§fn clone(&self) -> HubContentInfo
fn clone(&self) -> HubContentInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HubContentInfo
impl Debug for HubContentInfo
source§impl PartialEq<HubContentInfo> for HubContentInfo
impl PartialEq<HubContentInfo> for HubContentInfo
source§fn eq(&self, other: &HubContentInfo) -> bool
fn eq(&self, other: &HubContentInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HubContentInfo
Auto Trait Implementations§
impl RefUnwindSafe for HubContentInfo
impl Send for HubContentInfo
impl Sync for HubContentInfo
impl Unpin for HubContentInfo
impl UnwindSafe for HubContentInfo
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
Mutably borrows from an owned value. Read more