#[non_exhaustive]pub struct DescribeExplainabilityOutput {Show 14 fields
pub explainability_arn: Option<String>,
pub explainability_name: Option<String>,
pub resource_arn: Option<String>,
pub explainability_config: Option<ExplainabilityConfig>,
pub enable_visualization: Option<bool>,
pub data_source: Option<DataSource>,
pub schema: Option<Schema>,
pub start_date_time: Option<String>,
pub end_date_time: Option<String>,
pub estimated_time_remaining_in_minutes: Option<i64>,
pub message: Option<String>,
pub status: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modification_time: Option<DateTime>,
/* private fields */
}
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.explainability_arn: Option<String>
The Amazon Resource Name (ARN) of the Explainability.
explainability_name: Option<String>
The name of the Explainability.
resource_arn: Option<String>
The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
explainability_config: Option<ExplainabilityConfig>
The configuration settings that define the granularity of time series and time points for the Explainability.
enable_visualization: Option<bool>
Whether the visualization was enabled for the Explainability resource.
data_source: Option<DataSource>
The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.
schema: Option<Schema>
Defines the fields of a dataset.
start_date_time: Option<String>
If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
end_date_time: Option<String>
If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
estimated_time_remaining_in_minutes: Option<i64>
The estimated time remaining in minutes for the CreateExplainability
job to complete.
message: Option<String>
If an error occurred, a message about the error.
status: Option<String>
The status of the Explainability resource. States include:
-
ACTIVE
-
CREATE_PENDING
,CREATE_IN_PROGRESS
,CREATE_FAILED
-
CREATE_STOPPING
,CREATE_STOPPED
-
DELETE_PENDING
,DELETE_IN_PROGRESS
,DELETE_FAILED
creation_time: Option<DateTime>
When the Explainability resource was created.
last_modification_time: Option<DateTime>
The last time the resource was modified. The timestamp depends on the status of the job:
-
CREATE_PENDING
- TheCreationTime
. -
CREATE_IN_PROGRESS
- The current timestamp. -
CREATE_STOPPING
- The current timestamp. -
CREATE_STOPPED
- When the job stopped. -
ACTIVE
orCREATE_FAILED
- When the job finished or failed.
Implementations§
source§impl DescribeExplainabilityOutput
impl DescribeExplainabilityOutput
sourcepub fn explainability_arn(&self) -> Option<&str>
pub fn explainability_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Explainability.
sourcepub fn explainability_name(&self) -> Option<&str>
pub fn explainability_name(&self) -> Option<&str>
The name of the Explainability.
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.
sourcepub fn explainability_config(&self) -> Option<&ExplainabilityConfig>
pub fn explainability_config(&self) -> Option<&ExplainabilityConfig>
The configuration settings that define the granularity of time series and time points for the Explainability.
sourcepub fn enable_visualization(&self) -> Option<bool>
pub fn enable_visualization(&self) -> Option<bool>
Whether the visualization was enabled for the Explainability resource.
sourcepub fn data_source(&self) -> Option<&DataSource>
pub fn data_source(&self) -> Option<&DataSource>
The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.
sourcepub fn start_date_time(&self) -> Option<&str>
pub fn start_date_time(&self) -> Option<&str>
If TimePointGranularity
is set to SPECIFIC
, the first time point in the Explainability.
sourcepub fn end_date_time(&self) -> Option<&str>
pub fn end_date_time(&self) -> Option<&str>
If TimePointGranularity
is set to SPECIFIC
, the last time point in the Explainability.
sourcepub fn estimated_time_remaining_in_minutes(&self) -> Option<i64>
pub fn estimated_time_remaining_in_minutes(&self) -> Option<i64>
The estimated time remaining in minutes for the CreateExplainability
job to complete.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the Explainability resource. States include:
-
ACTIVE
-
CREATE_PENDING
,CREATE_IN_PROGRESS
,CREATE_FAILED
-
CREATE_STOPPING
,CREATE_STOPPED
-
DELETE_PENDING
,DELETE_IN_PROGRESS
,DELETE_FAILED
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the Explainability resource was created.
sourcepub fn last_modification_time(&self) -> Option<&DateTime>
pub fn last_modification_time(&self) -> Option<&DateTime>
The last time the resource was modified. The timestamp depends on the status of the job:
-
CREATE_PENDING
- TheCreationTime
. -
CREATE_IN_PROGRESS
- The current timestamp. -
CREATE_STOPPING
- The current timestamp. -
CREATE_STOPPED
- When the job stopped. -
ACTIVE
orCREATE_FAILED
- When the job finished or failed.
source§impl DescribeExplainabilityOutput
impl DescribeExplainabilityOutput
sourcepub fn builder() -> DescribeExplainabilityOutputBuilder
pub fn builder() -> DescribeExplainabilityOutputBuilder
Creates a new builder-style object to manufacture DescribeExplainabilityOutput
.
Trait Implementations§
source§impl Clone for DescribeExplainabilityOutput
impl Clone for DescribeExplainabilityOutput
source§fn clone(&self) -> DescribeExplainabilityOutput
fn clone(&self) -> DescribeExplainabilityOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeExplainabilityOutput
impl Debug for DescribeExplainabilityOutput
source§impl PartialEq for DescribeExplainabilityOutput
impl PartialEq for DescribeExplainabilityOutput
source§fn eq(&self, other: &DescribeExplainabilityOutput) -> bool
fn eq(&self, other: &DescribeExplainabilityOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeExplainabilityOutput
impl RequestId for DescribeExplainabilityOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.