[][src]Struct rusoto_forecast::DescribeDatasetGroupResponse

pub struct DescribeDatasetGroupResponse {
    pub creation_time: Option<f64>,
    pub dataset_arns: Option<Vec<String>>,
    pub dataset_group_arn: Option<String>,
    pub dataset_group_name: Option<String>,
    pub domain: Option<String>,
    pub last_modification_time: Option<f64>,
    pub status: Option<String>,
}

Fields

creation_time: Option<f64>

When the dataset group was created.

dataset_arns: Option<Vec<String>>

An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.

dataset_group_arn: Option<String>

The ARN of the dataset group.

dataset_group_name: Option<String>

The name of the dataset group.

domain: Option<String>

The domain associated with the dataset group.

last_modification_time: Option<f64>

When the dataset group was created or last updated from a call to the UpdateDatasetGroup operation. While the dataset group is being updated, LastModificationTime is the current time of the DescribeDatasetGroup call.

status: Option<String>

The status of the dataset group. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

  • UPDATEPENDING, UPDATEINPROGRESS, UPDATEFAILED

The UPDATE states apply when you call the UpdateDatasetGroup operation.

The Status of the dataset group must be ACTIVE before you can use the dataset group to create a predictor.

Trait Implementations

impl Clone for DescribeDatasetGroupResponse[src]

impl Debug for DescribeDatasetGroupResponse[src]

impl Default for DescribeDatasetGroupResponse[src]

impl<'de> Deserialize<'de> for DescribeDatasetGroupResponse[src]

impl PartialEq<DescribeDatasetGroupResponse> for DescribeDatasetGroupResponse[src]

impl StructuralPartialEq for DescribeDatasetGroupResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.