Struct aws_sdk_dataexchange::types::DataSetEntry
source · #[non_exhaustive]pub struct DataSetEntry {
pub arn: String,
pub asset_type: AssetType,
pub created_at: DateTime,
pub description: String,
pub id: String,
pub name: String,
pub origin: Origin,
pub origin_details: Option<OriginDetails>,
pub source_id: Option<String>,
pub updated_at: DateTime,
}Expand description
A data set is an AWS resource with one or more revisions.
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: StringThe ARN for the data set.
asset_type: AssetTypeThe type of asset that is added to a data set.
created_at: DateTimeThe date and time that the data set was created, in ISO 8601 format.
description: StringThe description for the data set.
id: StringThe unique identifier for the data set.
name: StringThe name of the data set.
origin: OriginA 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: DateTimeThe date and time that the data set was last updated, in ISO 8601 format.
Implementations§
source§impl DataSetEntry
impl DataSetEntry
sourcepub fn asset_type(&self) -> &AssetType
pub fn asset_type(&self) -> &AssetType
The type of asset that is added to a data set.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The date and time that the data set was created, in ISO 8601 format.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
The description for the data set.
sourcepub fn origin(&self) -> &Origin
pub fn origin(&self) -> &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) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The date and time that the data set was last updated, in ISO 8601 format.
source§impl DataSetEntry
impl DataSetEntry
sourcepub fn builder() -> DataSetEntryBuilder
pub fn builder() -> DataSetEntryBuilder
Creates a new builder-style object to manufacture DataSetEntry.
Trait Implementations§
source§impl Clone for DataSetEntry
impl Clone for DataSetEntry
source§fn clone(&self) -> DataSetEntry
fn clone(&self) -> DataSetEntry
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataSetEntry
impl Debug for DataSetEntry
source§impl PartialEq for DataSetEntry
impl PartialEq for DataSetEntry
source§fn eq(&self, other: &DataSetEntry) -> bool
fn eq(&self, other: &DataSetEntry) -> bool
self and other values to be equal, and is used
by ==.