Struct aws_sdk_datazone::types::DataSourceSummary
source · #[non_exhaustive]pub struct DataSourceSummary {Show 14 fields
pub domain_id: Option<String>,
pub environment_id: Option<String>,
pub data_source_id: Option<String>,
pub name: Option<String>,
pub type: Option<String>,
pub status: Option<DataSourceStatus>,
pub enable_setting: Option<EnableSetting>,
pub schedule: Option<ScheduleConfiguration>,
pub last_run_status: Option<DataSourceRunStatus>,
pub last_run_at: Option<DateTime>,
pub last_run_error_message: Option<DataSourceErrorMessage>,
pub last_run_asset_count: Option<i32>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}
Expand description
The details of the data source.
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.domain_id: Option<String>
The ID of the Amazon DataZone domain in which the data source exists.
environment_id: Option<String>
The ID of the environment in which the data source exists.
data_source_id: Option<String>
The ID of the data source.
name: Option<String>
The name of the data source.
type: Option<String>
The type of the data source.
status: Option<DataSourceStatus>
The status of the data source.
enable_setting: Option<EnableSetting>
Specifies whether the data source is enabled.
schedule: Option<ScheduleConfiguration>
The details of the schedule of the data source runs.
last_run_status: Option<DataSourceRunStatus>
The status of the last data source run.
last_run_at: Option<DateTime>
The timestamp of when the data source run was last performed.
last_run_error_message: Option<DataSourceErrorMessage>
The details of the error message that is returned if the operation cannot be successfully completed.
last_run_asset_count: Option<i32>
The count of the assets created during the last data source run.
created_at: Option<DateTime>
The timestamp of when the data source was created.
updated_at: Option<DateTime>
The timestamp of when the data source was updated.
Implementations§
source§impl DataSourceSummary
impl DataSourceSummary
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which the data source exists.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The ID of the environment in which the data source exists.
sourcepub fn data_source_id(&self) -> Option<&str>
pub fn data_source_id(&self) -> Option<&str>
The ID of the data source.
sourcepub fn status(&self) -> Option<&DataSourceStatus>
pub fn status(&self) -> Option<&DataSourceStatus>
The status of the data source.
sourcepub fn enable_setting(&self) -> Option<&EnableSetting>
pub fn enable_setting(&self) -> Option<&EnableSetting>
Specifies whether the data source is enabled.
sourcepub fn schedule(&self) -> Option<&ScheduleConfiguration>
pub fn schedule(&self) -> Option<&ScheduleConfiguration>
The details of the schedule of the data source runs.
sourcepub fn last_run_status(&self) -> Option<&DataSourceRunStatus>
pub fn last_run_status(&self) -> Option<&DataSourceRunStatus>
The status of the last data source run.
sourcepub fn last_run_at(&self) -> Option<&DateTime>
pub fn last_run_at(&self) -> Option<&DateTime>
The timestamp of when the data source run was last performed.
sourcepub fn last_run_error_message(&self) -> Option<&DataSourceErrorMessage>
pub fn last_run_error_message(&self) -> Option<&DataSourceErrorMessage>
The details of the error message that is returned if the operation cannot be successfully completed.
sourcepub fn last_run_asset_count(&self) -> Option<i32>
pub fn last_run_asset_count(&self) -> Option<i32>
The count of the assets created during the last data source run.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the data source was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the data source was updated.
source§impl DataSourceSummary
impl DataSourceSummary
sourcepub fn builder() -> DataSourceSummaryBuilder
pub fn builder() -> DataSourceSummaryBuilder
Creates a new builder-style object to manufacture DataSourceSummary
.
Trait Implementations§
source§impl Clone for DataSourceSummary
impl Clone for DataSourceSummary
source§fn clone(&self) -> DataSourceSummary
fn clone(&self) -> DataSourceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataSourceSummary
impl Debug for DataSourceSummary
source§impl PartialEq for DataSourceSummary
impl PartialEq for DataSourceSummary
source§fn eq(&self, other: &DataSourceSummary) -> bool
fn eq(&self, other: &DataSourceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.