Struct aws_sdk_datazone::types::DataSourceRunActivity
source · #[non_exhaustive]pub struct DataSourceRunActivity {
pub database: Option<String>,
pub data_source_run_id: Option<String>,
pub technical_name: Option<String>,
pub data_asset_status: Option<DataAssetActivityStatus>,
pub project_id: Option<String>,
pub data_asset_id: Option<String>,
pub technical_description: Option<String>,
pub error_message: Option<DataSourceErrorMessage>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}
Expand description
The activity details of the data source run.
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.database: Option<String>
The database included in the data source run activity.
data_source_run_id: Option<String>
The identifier of the data source for the data source run activity.
technical_name: Option<String>
The technical name included in the data source run activity.
data_asset_status: Option<DataAssetActivityStatus>
The status of the asset included in the data source run activity.
project_id: Option<String>
The project ID included in the data source run activity.
data_asset_id: Option<String>
The identifier of the asset included in the data source run activity.
technical_description: Option<String>
The technical description included in the data source run activity.
error_message: Option<DataSourceErrorMessage>
The details of the error message that is returned if the operation cannot be successfully completed.
created_at: Option<DateTime>
The timestamp of when data source run activity was created.
updated_at: Option<DateTime>
The timestamp of when data source run activity was updated.
Implementations§
source§impl DataSourceRunActivity
impl DataSourceRunActivity
sourcepub fn data_source_run_id(&self) -> Option<&str>
pub fn data_source_run_id(&self) -> Option<&str>
The identifier of the data source for the data source run activity.
sourcepub fn technical_name(&self) -> Option<&str>
pub fn technical_name(&self) -> Option<&str>
The technical name included in the data source run activity.
sourcepub fn data_asset_status(&self) -> Option<&DataAssetActivityStatus>
pub fn data_asset_status(&self) -> Option<&DataAssetActivityStatus>
The status of the asset included in the data source run activity.
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
The project ID included in the data source run activity.
sourcepub fn data_asset_id(&self) -> Option<&str>
pub fn data_asset_id(&self) -> Option<&str>
The identifier of the asset included in the data source run activity.
sourcepub fn technical_description(&self) -> Option<&str>
pub fn technical_description(&self) -> Option<&str>
The technical description included in the data source run activity.
sourcepub fn error_message(&self) -> Option<&DataSourceErrorMessage>
pub fn error_message(&self) -> Option<&DataSourceErrorMessage>
The details of the error message that is returned if the operation cannot be successfully completed.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when data source run activity was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when data source run activity was updated.
source§impl DataSourceRunActivity
impl DataSourceRunActivity
sourcepub fn builder() -> DataSourceRunActivityBuilder
pub fn builder() -> DataSourceRunActivityBuilder
Creates a new builder-style object to manufacture DataSourceRunActivity
.
Trait Implementations§
source§impl Clone for DataSourceRunActivity
impl Clone for DataSourceRunActivity
source§fn clone(&self) -> DataSourceRunActivity
fn clone(&self) -> DataSourceRunActivity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataSourceRunActivity
impl Debug for DataSourceRunActivity
source§impl PartialEq for DataSourceRunActivity
impl PartialEq for DataSourceRunActivity
source§fn eq(&self, other: &DataSourceRunActivity) -> bool
fn eq(&self, other: &DataSourceRunActivity) -> bool
self
and other
values to be equal, and is used
by ==
.