Struct aws_sdk_datazone::types::DataSourceRunActivity
source · #[non_exhaustive]pub struct DataSourceRunActivity {
pub database: String,
pub data_source_run_id: String,
pub technical_name: String,
pub data_asset_status: DataAssetActivityStatus,
pub project_id: String,
pub data_asset_id: Option<String>,
pub technical_description: Option<String>,
pub error_message: Option<DataSourceErrorMessage>,
pub created_at: DateTime,
pub updated_at: 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: String
The database included in the data source run activity.
data_source_run_id: String
The identifier of the data source for the data source run activity.
technical_name: String
The technical name included in the data source run activity.
data_asset_status: DataAssetActivityStatus
The status of the asset included in the data source run activity.
project_id: 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: DateTime
The timestamp of when data source run activity was created.
updated_at: DateTime
The timestamp of when data source run activity was updated.
Implementations§
source§impl DataSourceRunActivity
impl DataSourceRunActivity
sourcepub fn data_source_run_id(&self) -> &str
pub fn data_source_run_id(&self) -> &str
The identifier of the data source for the data source run activity.
sourcepub fn technical_name(&self) -> &str
pub fn technical_name(&self) -> &str
The technical name included in the data source run activity.
sourcepub fn data_asset_status(&self) -> &DataAssetActivityStatus
pub fn data_asset_status(&self) -> &DataAssetActivityStatus
The status of the asset included in the data source run activity.
sourcepub fn project_id(&self) -> &str
pub fn project_id(&self) -> &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) -> &DateTime
pub fn created_at(&self) -> &DateTime
The timestamp of when data source run activity was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &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
impl StructuralPartialEq for DataSourceRunActivity
Auto Trait Implementations§
impl Freeze for DataSourceRunActivity
impl RefUnwindSafe for DataSourceRunActivity
impl Send for DataSourceRunActivity
impl Sync for DataSourceRunActivity
impl Unpin for DataSourceRunActivity
impl UnwindSafe for DataSourceRunActivity
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more