Struct aws_sdk_apprunner::model::ServiceSummary
source · #[non_exhaustive]pub struct ServiceSummary { /* private fields */ }
Expand description
Provides summary information for an App Runner service.
This type contains limited information about a service. It doesn't include configuration details. It's returned by the ListServices action. Complete service information is returned by the CreateService, DescribeService, and DeleteService actions using the Service type.
Implementations§
source§impl ServiceSummary
impl ServiceSummary
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The customer-provided service name.
sourcepub fn service_id(&self) -> Option<&str>
pub fn service_id(&self) -> Option<&str>
An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.
sourcepub fn service_arn(&self) -> Option<&str>
pub fn service_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of this service.
sourcepub fn service_url(&self) -> Option<&str>
pub fn service_url(&self) -> Option<&str>
A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time when the App Runner service was created. 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 App Runner service was last updated. It's in theUnix time stamp format.
sourcepub fn status(&self) -> Option<&ServiceStatus>
pub fn status(&self) -> Option<&ServiceStatus>
The current state of the App Runner service. These particular values mean the following.
-
CREATE_FAILED
– The service failed to create. Read the failure events and logs, change any parameters that need to be fixed, and retry the call to create the service.The failed service isn't usable, and still counts towards your service quota. When you're done analyzing the failure, delete the service.
-
DELETE_FAILED
– The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
source§impl ServiceSummary
impl ServiceSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ServiceSummary
.
Trait Implementations§
source§impl Clone for ServiceSummary
impl Clone for ServiceSummary
source§fn clone(&self) -> ServiceSummary
fn clone(&self) -> ServiceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ServiceSummary
impl Debug for ServiceSummary
source§impl PartialEq<ServiceSummary> for ServiceSummary
impl PartialEq<ServiceSummary> for ServiceSummary
source§fn eq(&self, other: &ServiceSummary) -> bool
fn eq(&self, other: &ServiceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.