Struct aws_sdk_personalize::types::RecipeSummary
source · #[non_exhaustive]pub struct RecipeSummary {
pub name: Option<String>,
pub recipe_arn: Option<String>,
pub status: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
pub domain: Option<Domain>,
}
Expand description
Provides a summary of the properties of a recipe. For a complete listing, call the DescribeRecipe API.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the recipe.
recipe_arn: Option<String>
The Amazon Resource Name (ARN) of the recipe.
status: Option<String>
The status of the recipe.
creation_date_time: Option<DateTime>
The date and time (in Unix time) that the recipe was created.
last_updated_date_time: Option<DateTime>
The date and time (in Unix time) that the recipe was last updated.
domain: Option<Domain>
The domain of the recipe (if the recipe is a Domain dataset group use case).
Implementations§
source§impl RecipeSummary
impl RecipeSummary
sourcepub fn recipe_arn(&self) -> Option<&str>
pub fn recipe_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the recipe.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time (in Unix time) that the recipe was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time (in Unix time) that the recipe was last updated.
source§impl RecipeSummary
impl RecipeSummary
sourcepub fn builder() -> RecipeSummaryBuilder
pub fn builder() -> RecipeSummaryBuilder
Creates a new builder-style object to manufacture RecipeSummary
.
Trait Implementations§
source§impl Clone for RecipeSummary
impl Clone for RecipeSummary
source§fn clone(&self) -> RecipeSummary
fn clone(&self) -> RecipeSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RecipeSummary
impl Debug for RecipeSummary
source§impl PartialEq for RecipeSummary
impl PartialEq for RecipeSummary
source§fn eq(&self, other: &RecipeSummary) -> bool
fn eq(&self, other: &RecipeSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecipeSummary
Auto Trait Implementations§
impl RefUnwindSafe for RecipeSummary
impl Send for RecipeSummary
impl Sync for RecipeSummary
impl Unpin for RecipeSummary
impl UnwindSafe for RecipeSummary
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
Mutably borrows from an owned value. Read more