Struct aws_sdk_datazone::operation::get_listing::GetListingOutput
source · #[non_exhaustive]pub struct GetListingOutput {
pub domain_id: Option<String>,
pub id: Option<String>,
pub listing_revision: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub created_by: Option<String>,
pub updated_by: Option<String>,
pub item: Option<ListingItem>,
pub name: Option<String>,
pub description: Option<String>,
pub status: Option<ListingStatus>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: Option<String>
§
id: Option<String>
§
listing_revision: Option<String>
§
created_at: Option<DateTime>
§
updated_at: Option<DateTime>
The timestamp of when the listing was updated.
created_by: Option<String>
The Amazon DataZone user who created the listing.
updated_by: Option<String>
The Amazon DataZone user who updated the listing.
item: Option<ListingItem>
§
name: Option<String>
§
description: Option<String>
§
status: Option<ListingStatus>
Implementations§
source§impl GetListingOutput
impl GetListingOutput
sourcepub fn listing_revision(&self) -> Option<&str>
pub fn listing_revision(&self) -> Option<&str>
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the listing was updated.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the listing.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The Amazon DataZone user who updated the listing.
sourcepub fn item(&self) -> Option<&ListingItem>
pub fn item(&self) -> Option<&ListingItem>
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
sourcepub fn status(&self) -> Option<&ListingStatus>
pub fn status(&self) -> Option<&ListingStatus>
source§impl GetListingOutput
impl GetListingOutput
sourcepub fn builder() -> GetListingOutputBuilder
pub fn builder() -> GetListingOutputBuilder
Creates a new builder-style object to manufacture GetListingOutput
.
Trait Implementations§
source§impl Clone for GetListingOutput
impl Clone for GetListingOutput
source§fn clone(&self) -> GetListingOutput
fn clone(&self) -> GetListingOutput
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 GetListingOutput
impl Debug for GetListingOutput
source§impl PartialEq for GetListingOutput
impl PartialEq for GetListingOutput
source§fn eq(&self, other: &GetListingOutput) -> bool
fn eq(&self, other: &GetListingOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetListingOutput
impl RequestId for GetListingOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetListingOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetListingOutput
impl Send for GetListingOutput
impl Sync for GetListingOutput
impl Unpin for GetListingOutput
impl UnwindSafe for GetListingOutput
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