Struct aws_sdk_apprunner::model::Service
source · [−]#[non_exhaustive]pub struct Service { /* private fields */ }
Expand description
Describes an App Runner service. It can describe a service in any state, including deleted services.
This type contains the full information about a service, including configuration details. It's returned by the CreateService, DescribeService, and DeleteService actions. A subset of this information is returned by the ListServices action using the ServiceSummary type.
Implementations
sourceimpl Service
impl Service
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 at. It's in the Unix time stamp format.
sourcepub fn deleted_at(&self) -> Option<&DateTime>
pub fn deleted_at(&self) -> Option<&DateTime>
The time when the App Runner service was deleted. It's in the Unix 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. To troubleshoot this failure, 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.
sourcepub fn source_configuration(&self) -> Option<&SourceConfiguration>
pub fn source_configuration(&self) -> Option<&SourceConfiguration>
The source deployed to the App Runner service. It can be a code or an image repository.
sourcepub fn instance_configuration(&self) -> Option<&InstanceConfiguration>
pub fn instance_configuration(&self) -> Option<&InstanceConfiguration>
The runtime configuration of instances (scaling units) of this service.
sourcepub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
pub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
The encryption key that App Runner uses to encrypt the service logs and the copy of the source repository that App Runner maintains for the service. It can be either a customer-provided encryption key or an Amazon Web Services managed key.
sourcepub fn health_check_configuration(&self) -> Option<&HealthCheckConfiguration>
pub fn health_check_configuration(&self) -> Option<&HealthCheckConfiguration>
The settings for the health check that App Runner performs to monitor the health of this service.
sourcepub fn auto_scaling_configuration_summary(
&self
) -> Option<&AutoScalingConfigurationSummary>
pub fn auto_scaling_configuration_summary(
&self
) -> Option<&AutoScalingConfigurationSummary>
Summary information for the App Runner automatic scaling configuration resource that's associated with this service.
sourcepub fn network_configuration(&self) -> Option<&NetworkConfiguration>
pub fn network_configuration(&self) -> Option<&NetworkConfiguration>
Configuration settings related to network traffic of the web application that this service runs.
sourcepub fn observability_configuration(
&self
) -> Option<&ServiceObservabilityConfiguration>
pub fn observability_configuration(
&self
) -> Option<&ServiceObservabilityConfiguration>
The observability configuration of this service.
Trait Implementations
impl StructuralPartialEq for Service
Auto Trait Implementations
impl RefUnwindSafe for Service
impl Send for Service
impl Sync for Service
impl Unpin for Service
impl UnwindSafe for Service
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more