Struct aws_sdk_dataexchange::output::UpdateDataSetOutput
source · [−]#[non_exhaustive]pub struct UpdateDataSetOutput {
pub arn: Option<String>,
pub asset_type: Option<AssetType>,
pub created_at: Option<DateTime>,
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub origin: Option<Origin>,
pub origin_details: Option<OriginDetails>,
pub source_id: Option<String>,
pub updated_at: Option<DateTime>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The ARN for the data set.
asset_type: Option<AssetType>The type of asset that is added to a data set.
created_at: Option<DateTime>The date and time that the data set was created, in ISO 8601 format.
description: Option<String>The description for the data set.
id: Option<String>The unique identifier for the data set.
name: Option<String>The name of the data set.
origin: Option<Origin>A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).
origin_details: Option<OriginDetails>If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.
source_id: Option<String>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.
updated_at: Option<DateTime>The date and time that the data set was last updated, in ISO 8601 format.
Implementations
sourceimpl UpdateDataSetOutput
impl UpdateDataSetOutput
sourcepub fn asset_type(&self) -> Option<&AssetType>
pub fn asset_type(&self) -> Option<&AssetType>
The type of asset that is added to a data set.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time that the data set was created, in ISO 8601 format.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the data set.
sourcepub fn origin(&self) -> Option<&Origin>
pub fn origin(&self) -> Option<&Origin>
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) -> Option<&OriginDetails>
pub fn origin_details(&self) -> Option<&OriginDetails>
If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.
sourcepub fn source_id(&self) -> Option<&str>
pub fn source_id(&self) -> Option<&str>
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) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The date and time that the data set was last updated, in ISO 8601 format.
sourceimpl UpdateDataSetOutput
impl UpdateDataSetOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateDataSetOutput
Trait Implementations
sourceimpl Clone for UpdateDataSetOutput
impl Clone for UpdateDataSetOutput
sourcefn clone(&self) -> UpdateDataSetOutput
fn clone(&self) -> UpdateDataSetOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UpdateDataSetOutput
impl Debug for UpdateDataSetOutput
sourceimpl PartialEq<UpdateDataSetOutput> for UpdateDataSetOutput
impl PartialEq<UpdateDataSetOutput> for UpdateDataSetOutput
sourcefn eq(&self, other: &UpdateDataSetOutput) -> bool
fn eq(&self, other: &UpdateDataSetOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateDataSetOutput) -> bool
fn ne(&self, other: &UpdateDataSetOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdateDataSetOutput
Auto Trait Implementations
impl RefUnwindSafe for UpdateDataSetOutput
impl Send for UpdateDataSetOutput
impl Sync for UpdateDataSetOutput
impl Unpin for UpdateDataSetOutput
impl UnwindSafe for UpdateDataSetOutput
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