#[non_exhaustive]pub struct CreateExplainabilityInput {
pub explainability_name: Option<String>,
pub resource_arn: Option<String>,
pub explainability_config: Option<ExplainabilityConfig>,
pub data_source: Option<DataSource>,
pub schema: Option<Schema>,
pub enable_visualization: Option<bool>,
pub start_date_time: Option<String>,
pub end_date_time: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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_name: Option<String>
A unique name for the Explainability.
resource_arn: Option<String>
The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
explainability_config: Option<ExplainabilityConfig>
The configuration settings that define the granularity of time series and time points for the Explainability.
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.
enable_visualization: Option<bool>
Create an Explainability visualization that is viewable within the Amazon Web Services console.
start_date_time: Option<String>
If TimePointGranularity
is set to SPECIFIC
, define the first point for the Explainability.
Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
end_date_time: Option<String>
If TimePointGranularity
is set to SPECIFIC
, define the last time point for the Explainability.
Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.
The following restrictions apply to tags:
-
For each resource, each tag key must be unique and each tag key must have one value.
-
Maximum number of tags per resource: 50.
-
Maximum key length: 128 Unicode characters in UTF-8.
-
Maximum value length: 256 Unicode characters in UTF-8.
-
Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
-
Key prefixes cannot include any upper or lowercase combination of
aws:
orAWS:
. Values can have this prefix. If a tag value hasaws
as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix ofaws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
Implementations§
source§impl CreateExplainabilityInput
impl CreateExplainabilityInput
sourcepub fn explainability_name(&self) -> Option<&str>
pub fn explainability_name(&self) -> Option<&str>
A unique name for 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.
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 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 enable_visualization(&self) -> Option<bool>
pub fn enable_visualization(&self) -> Option<bool>
Create an Explainability visualization that is viewable within the Amazon Web Services console.
sourcepub fn start_date_time(&self) -> Option<&str>
pub fn start_date_time(&self) -> Option<&str>
If TimePointGranularity
is set to SPECIFIC
, define the first point for the Explainability.
Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
sourcepub fn end_date_time(&self) -> Option<&str>
pub fn end_date_time(&self) -> Option<&str>
If TimePointGranularity
is set to SPECIFIC
, define the last time point for the Explainability.
Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.
The following restrictions apply to tags:
-
For each resource, each tag key must be unique and each tag key must have one value.
-
Maximum number of tags per resource: 50.
-
Maximum key length: 128 Unicode characters in UTF-8.
-
Maximum value length: 256 Unicode characters in UTF-8.
-
Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
-
Key prefixes cannot include any upper or lowercase combination of
aws:
orAWS:
. Values can have this prefix. If a tag value hasaws
as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix ofaws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateExplainabilityInput
impl CreateExplainabilityInput
sourcepub fn builder() -> CreateExplainabilityInputBuilder
pub fn builder() -> CreateExplainabilityInputBuilder
Creates a new builder-style object to manufacture CreateExplainabilityInput
.
Trait Implementations§
source§impl Clone for CreateExplainabilityInput
impl Clone for CreateExplainabilityInput
source§fn clone(&self) -> CreateExplainabilityInput
fn clone(&self) -> CreateExplainabilityInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateExplainabilityInput
impl Debug for CreateExplainabilityInput
impl StructuralPartialEq for CreateExplainabilityInput
Auto Trait Implementations§
impl Freeze for CreateExplainabilityInput
impl RefUnwindSafe for CreateExplainabilityInput
impl Send for CreateExplainabilityInput
impl Sync for CreateExplainabilityInput
impl Unpin for CreateExplainabilityInput
impl UnwindSafe for CreateExplainabilityInput
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