Struct aws_sdk_apprunner::types::Service
source · #[non_exhaustive]pub struct Service {Show 15 fields
pub service_name: String,
pub service_id: String,
pub service_arn: String,
pub service_url: Option<String>,
pub created_at: DateTime,
pub updated_at: DateTime,
pub deleted_at: Option<DateTime>,
pub status: ServiceStatus,
pub source_configuration: Option<SourceConfiguration>,
pub instance_configuration: Option<InstanceConfiguration>,
pub encryption_configuration: Option<EncryptionConfiguration>,
pub health_check_configuration: Option<HealthCheckConfiguration>,
pub auto_scaling_configuration_summary: Option<AutoScalingConfigurationSummary>,
pub network_configuration: Option<NetworkConfiguration>,
pub observability_configuration: Option<ServiceObservabilityConfiguration>,
}
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.
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.service_name: String
The customer-provided service name.
service_id: String
An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.
service_arn: String
The Amazon Resource Name (ARN) of this service.
service_url: Option<String>
A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.
created_at: DateTime
The time when the App Runner service was created. It's in the Unix time stamp format.
updated_at: DateTime
The time when the App Runner service was last updated at. It's in the Unix time stamp format.
deleted_at: Option<DateTime>
The time when the App Runner service was deleted. It's in the Unix time stamp format.
status: ServiceStatus
The current state of the App Runner service. These particular values mean the following.
-
CREATE_FAILED
– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService
. -
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_configuration: Option<SourceConfiguration>
The source deployed to the App Runner service. It can be a code or an image repository.
instance_configuration: Option<InstanceConfiguration>
The runtime configuration of instances (scaling units) of this service.
encryption_configuration: 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.
health_check_configuration: Option<HealthCheckConfiguration>
The settings for the health check that App Runner performs to monitor the health of this service.
auto_scaling_configuration_summary: Option<AutoScalingConfigurationSummary>
Summary information for the App Runner automatic scaling configuration resource that's associated with this service.
network_configuration: Option<NetworkConfiguration>
Configuration settings related to network traffic of the web application that this service runs.
observability_configuration: Option<ServiceObservabilityConfiguration>
The observability configuration of this service.
Implementations§
source§impl Service
impl Service
sourcepub fn service_name(&self) -> &str
pub fn service_name(&self) -> &str
The customer-provided service name.
sourcepub fn service_id(&self) -> &str
pub fn service_id(&self) -> &str
An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.
sourcepub fn service_arn(&self) -> &str
pub fn service_arn(&self) -> &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) -> &DateTime
pub fn created_at(&self) -> &DateTime
The time when the App Runner service was created. It's in the Unix time stamp format.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &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) -> &ServiceStatus
pub fn status(&self) -> &ServiceStatus
The current state of the App Runner service. These particular values mean the following.
-
CREATE_FAILED
– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService
. -
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.