Struct aws_sdk_dataexchange::model::data_set_entry::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }Expand description
A builder for DataSetEntry
Implementations
sourceimpl Builder
impl Builder
sourcepub fn asset_type(self, input: AssetType) -> Self
pub fn asset_type(self, input: AssetType) -> Self
The type of asset that is added to a data set.
sourcepub fn set_asset_type(self, input: Option<AssetType>) -> Self
pub fn set_asset_type(self, input: Option<AssetType>) -> Self
The type of asset that is added to a data set.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The date and time that the data set was created, in ISO 8601 format.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The date and time that the data set was created, in ISO 8601 format.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the data set.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the data set.
sourcepub fn origin(self, input: Origin) -> Self
pub fn origin(self, input: Origin) -> Self
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).
sourcepub fn set_origin(self, input: Option<Origin>) -> Self
pub fn set_origin(self, input: Option<Origin>) -> Self
A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).
sourcepub fn origin_details(self, input: OriginDetails) -> Self
pub fn origin_details(self, input: OriginDetails) -> Self
If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.
sourcepub fn set_origin_details(self, input: Option<OriginDetails>) -> Self
pub fn set_origin_details(self, input: Option<OriginDetails>) -> Self
If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.
sourcepub fn source_id(self, input: impl Into<String>) -> Self
pub fn source_id(self, input: impl Into<String>) -> Self
The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.
sourcepub fn set_source_id(self, input: Option<String>) -> Self
pub fn set_source_id(self, input: Option<String>) -> Self
The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The date and time that the data set was last updated, in ISO 8601 format.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The date and time that the data set was last updated, in ISO 8601 format.
sourcepub fn build(self) -> DataSetEntry
pub fn build(self) -> DataSetEntry
Consumes the builder and constructs a DataSetEntry
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more