Struct aws_sdk_apprunner::model::OperationSummary
source · #[non_exhaustive]pub struct OperationSummary { /* private fields */ }
Expand description
Provides summary information for an operation that occurred on an App Runner service.
Implementations§
source§impl OperationSummary
impl OperationSummary
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
A unique ID of this operation. It's unique in the scope of the App Runner service.
sourcepub fn type(&self) -> Option<&OperationType>
pub fn type(&self) -> Option<&OperationType>
The type of operation. It indicates a specific action that occured.
sourcepub fn status(&self) -> Option<&OperationStatus>
pub fn status(&self) -> Option<&OperationStatus>
The current state of the operation.
sourcepub fn target_arn(&self) -> Option<&str>
pub fn target_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
The time when the operation started. It's in the Unix time stamp format.
sourcepub fn ended_at(&self) -> Option<&DateTime>
pub fn ended_at(&self) -> Option<&DateTime>
The time when the operation ended. It's in the Unix time stamp format.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The time when the operation was last updated. It's in the Unix time stamp format.
source§impl OperationSummary
impl OperationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OperationSummary
.
Trait Implementations§
source§impl Clone for OperationSummary
impl Clone for OperationSummary
source§fn clone(&self) -> OperationSummary
fn clone(&self) -> OperationSummary
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 OperationSummary
impl Debug for OperationSummary
source§impl PartialEq<OperationSummary> for OperationSummary
impl PartialEq<OperationSummary> for OperationSummary
source§fn eq(&self, other: &OperationSummary) -> bool
fn eq(&self, other: &OperationSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.