Struct aws_sdk_datazone::operation::get_listing::GetListingOutput
source · #[non_exhaustive]pub struct GetListingOutput {
pub domain_id: String,
pub id: String,
pub listing_revision: 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: StringThe ID of the Amazon DataZone domain.
id: StringThe ID of the listing.
listing_revision: StringThe revision of a listing.
created_at: Option<DateTime>The timestamp of when the listing was created.
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>The details of a listing.
name: Option<String>The name of the listing.
description: Option<String>The description of the listing.
status: Option<ListingStatus>The status of the listing.
Implementations§
source§impl GetListingOutput
impl GetListingOutput
sourcepub fn listing_revision(&self) -> &str
pub fn listing_revision(&self) -> &str
The revision of a listing.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the listing was created.
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>
The details of a listing.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the listing.
sourcepub fn status(&self) -> Option<&ListingStatus>
pub fn status(&self) -> Option<&ListingStatus>
The status of the listing.
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 Freeze for GetListingOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.