#[non_exhaustive]pub struct GetListingOutputBuilder { /* private fields */ }
Expand description
A builder for GetListingOutput
.
Implementations§
source§impl GetListingOutputBuilder
impl GetListingOutputBuilder
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
sourcepub fn listing_revision(self, input: impl Into<String>) -> Self
pub fn listing_revision(self, input: impl Into<String>) -> Self
sourcepub fn set_listing_revision(self, input: Option<String>) -> Self
pub fn set_listing_revision(self, input: Option<String>) -> Self
sourcepub fn get_listing_revision(&self) -> &Option<String>
pub fn get_listing_revision(&self) -> &Option<String>
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The timestamp of when the listing was updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The timestamp of when the listing was updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The timestamp of when the listing was updated.
sourcepub fn created_by(self, input: impl Into<String>) -> Self
pub fn created_by(self, input: impl Into<String>) -> Self
The Amazon DataZone user who created the listing.
sourcepub fn set_created_by(self, input: Option<String>) -> Self
pub fn set_created_by(self, input: Option<String>) -> Self
The Amazon DataZone user who created the listing.
sourcepub fn get_created_by(&self) -> &Option<String>
pub fn get_created_by(&self) -> &Option<String>
The Amazon DataZone user who created the listing.
sourcepub fn updated_by(self, input: impl Into<String>) -> Self
pub fn updated_by(self, input: impl Into<String>) -> Self
The Amazon DataZone user who updated the listing.
sourcepub fn set_updated_by(self, input: Option<String>) -> Self
pub fn set_updated_by(self, input: Option<String>) -> Self
The Amazon DataZone user who updated the listing.
sourcepub fn get_updated_by(&self) -> &Option<String>
pub fn get_updated_by(&self) -> &Option<String>
The Amazon DataZone user who updated the listing.
sourcepub fn item(self, input: ListingItem) -> Self
pub fn item(self, input: ListingItem) -> Self
sourcepub fn set_item(self, input: Option<ListingItem>) -> Self
pub fn set_item(self, input: Option<ListingItem>) -> Self
sourcepub fn get_item(&self) -> &Option<ListingItem>
pub fn get_item(&self) -> &Option<ListingItem>
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
sourcepub fn status(self, input: ListingStatus) -> Self
pub fn status(self, input: ListingStatus) -> Self
sourcepub fn set_status(self, input: Option<ListingStatus>) -> Self
pub fn set_status(self, input: Option<ListingStatus>) -> Self
sourcepub fn get_status(&self) -> &Option<ListingStatus>
pub fn get_status(&self) -> &Option<ListingStatus>
sourcepub fn build(self) -> GetListingOutput
pub fn build(self) -> GetListingOutput
Consumes the builder and constructs a GetListingOutput
.
Trait Implementations§
source§impl Clone for GetListingOutputBuilder
impl Clone for GetListingOutputBuilder
source§fn clone(&self) -> GetListingOutputBuilder
fn clone(&self) -> GetListingOutputBuilder
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 GetListingOutputBuilder
impl Debug for GetListingOutputBuilder
source§impl Default for GetListingOutputBuilder
impl Default for GetListingOutputBuilder
source§fn default() -> GetListingOutputBuilder
fn default() -> GetListingOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetListingOutputBuilder
impl PartialEq for GetListingOutputBuilder
source§fn eq(&self, other: &GetListingOutputBuilder) -> bool
fn eq(&self, other: &GetListingOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetListingOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetListingOutputBuilder
impl Send for GetListingOutputBuilder
impl Sync for GetListingOutputBuilder
impl Unpin for GetListingOutputBuilder
impl UnwindSafe for GetListingOutputBuilder
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