#[non_exhaustive]pub struct DescribeDatasetGroupOutput {
pub dataset_group_name: Option<String>,
pub dataset_group_arn: Option<String>,
pub dataset_arns: Option<Vec<String>>,
pub domain: Option<Domain>,
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.dataset_group_name: Option<String>The name of the dataset group.
dataset_group_arn: Option<String>The ARN of the dataset group.
dataset_arns: Option<Vec<String>>An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.
domain: Option<Domain>The domain associated with the dataset group.
status: Option<String>The status of the dataset group. States include:
-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED -
UPDATE_PENDING,UPDATE_IN_PROGRESS,UPDATE_FAILED
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.
creation_time: Option<DateTime>When the dataset group was created.
last_modification_time: Option<DateTime>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.
Implementations§
source§impl DescribeDatasetGroupOutput
impl DescribeDatasetGroupOutput
sourcepub fn dataset_group_name(&self) -> Option<&str>
pub fn dataset_group_name(&self) -> Option<&str>
The name of the dataset group.
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The ARN of the dataset group.
sourcepub fn dataset_arns(&self) -> &[String]
pub fn dataset_arns(&self) -> &[String]
An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dataset_arns.is_none().
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the dataset group. States include:
-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED -
UPDATE_PENDING,UPDATE_IN_PROGRESS,UPDATE_FAILED
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.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the dataset group was created.
sourcepub fn last_modification_time(&self) -> Option<&DateTime>
pub fn last_modification_time(&self) -> Option<&DateTime>
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.
source§impl DescribeDatasetGroupOutput
impl DescribeDatasetGroupOutput
sourcepub fn builder() -> DescribeDatasetGroupOutputBuilder
pub fn builder() -> DescribeDatasetGroupOutputBuilder
Creates a new builder-style object to manufacture DescribeDatasetGroupOutput.
Trait Implementations§
source§impl Clone for DescribeDatasetGroupOutput
impl Clone for DescribeDatasetGroupOutput
source§fn clone(&self) -> DescribeDatasetGroupOutput
fn clone(&self) -> DescribeDatasetGroupOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeDatasetGroupOutput
impl Debug for DescribeDatasetGroupOutput
source§impl PartialEq for DescribeDatasetGroupOutput
impl PartialEq for DescribeDatasetGroupOutput
source§fn eq(&self, other: &DescribeDatasetGroupOutput) -> bool
fn eq(&self, other: &DescribeDatasetGroupOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeDatasetGroupOutput
impl RequestId for DescribeDatasetGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeDatasetGroupOutput
Auto Trait Implementations§
impl Freeze for DescribeDatasetGroupOutput
impl RefUnwindSafe for DescribeDatasetGroupOutput
impl Send for DescribeDatasetGroupOutput
impl Sync for DescribeDatasetGroupOutput
impl Unpin for DescribeDatasetGroupOutput
impl UnwindSafe for DescribeDatasetGroupOutput
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> 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