Struct aws_sdk_outposts::types::CapacityTaskSummary
source · #[non_exhaustive]pub struct CapacityTaskSummary {
pub capacity_task_id: Option<String>,
pub outpost_id: Option<String>,
pub order_id: Option<String>,
pub capacity_task_status: Option<CapacityTaskStatus>,
pub creation_date: Option<DateTime>,
pub completion_date: Option<DateTime>,
pub last_modified_date: Option<DateTime>,
}
Expand description
The summary of the capacity task.
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.capacity_task_id: Option<String>
The ID of the specified capacity task.
outpost_id: Option<String>
The ID of the Outpost associated with the specified capacity task.
order_id: Option<String>
The ID of the Amazon Web Services Outposts order of the host associated with the capacity task.
capacity_task_status: Option<CapacityTaskStatus>
The status of the capacity task.
creation_date: Option<DateTime>
The date that the specified capacity task was created.
completion_date: Option<DateTime>
The date that the specified capacity task successfully ran.
last_modified_date: Option<DateTime>
The date that the specified capacity was last modified.
Implementations§
source§impl CapacityTaskSummary
impl CapacityTaskSummary
sourcepub fn capacity_task_id(&self) -> Option<&str>
pub fn capacity_task_id(&self) -> Option<&str>
The ID of the specified capacity task.
sourcepub fn outpost_id(&self) -> Option<&str>
pub fn outpost_id(&self) -> Option<&str>
The ID of the Outpost associated with the specified capacity task.
sourcepub fn order_id(&self) -> Option<&str>
pub fn order_id(&self) -> Option<&str>
The ID of the Amazon Web Services Outposts order of the host associated with the capacity task.
sourcepub fn capacity_task_status(&self) -> Option<&CapacityTaskStatus>
pub fn capacity_task_status(&self) -> Option<&CapacityTaskStatus>
The status of the capacity task.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date that the specified capacity task was created.
sourcepub fn completion_date(&self) -> Option<&DateTime>
pub fn completion_date(&self) -> Option<&DateTime>
The date that the specified capacity task successfully ran.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date that the specified capacity was last modified.
source§impl CapacityTaskSummary
impl CapacityTaskSummary
sourcepub fn builder() -> CapacityTaskSummaryBuilder
pub fn builder() -> CapacityTaskSummaryBuilder
Creates a new builder-style object to manufacture CapacityTaskSummary
.
Trait Implementations§
source§impl Clone for CapacityTaskSummary
impl Clone for CapacityTaskSummary
source§fn clone(&self) -> CapacityTaskSummary
fn clone(&self) -> CapacityTaskSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CapacityTaskSummary
impl Debug for CapacityTaskSummary
source§impl PartialEq for CapacityTaskSummary
impl PartialEq for CapacityTaskSummary
source§fn eq(&self, other: &CapacityTaskSummary) -> bool
fn eq(&self, other: &CapacityTaskSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CapacityTaskSummary
Auto Trait Implementations§
impl Freeze for CapacityTaskSummary
impl RefUnwindSafe for CapacityTaskSummary
impl Send for CapacityTaskSummary
impl Sync for CapacityTaskSummary
impl Unpin for CapacityTaskSummary
impl UnwindSafe for CapacityTaskSummary
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