amazonka-apprunner-2.0: Amazon App Runner SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.AppRunner.Types.ServiceSummary

Description

 
Synopsis

Documentation

data ServiceSummary Source #

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.

See: newServiceSummary smart constructor.

Constructors

ServiceSummary' 

Fields

  • createdAt :: Maybe POSIX

    The time when the App Runner service was created. It's in the Unix time stamp format.

  • serviceArn :: Maybe Text

    The Amazon Resource Name (ARN) of this service.

  • serviceId :: Maybe Text

    An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.

  • serviceName :: Maybe Text

    The customer-provided service name.

  • serviceUrl :: Maybe Text

    A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.

  • status :: Maybe 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.
  • updatedAt :: Maybe POSIX

    The time when the App Runner service was last updated. It's in theUnix time stamp format.

Instances

Instances details
FromJSON ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

Generic ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

Associated Types

type Rep ServiceSummary :: Type -> Type #

Read ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

Show ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

NFData ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

Methods

rnf :: ServiceSummary -> () #

Eq ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

Hashable ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

type Rep ServiceSummary Source # 
Instance details

Defined in Amazonka.AppRunner.Types.ServiceSummary

newServiceSummary :: ServiceSummary Source #

Create a value of ServiceSummary with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:createdAt:ServiceSummary', serviceSummary_createdAt - The time when the App Runner service was created. It's in the Unix time stamp format.

$sel:serviceArn:ServiceSummary', serviceSummary_serviceArn - The Amazon Resource Name (ARN) of this service.

$sel:serviceId:ServiceSummary', serviceSummary_serviceId - An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.

$sel:serviceName:ServiceSummary', serviceSummary_serviceName - The customer-provided service name.

$sel:serviceUrl:ServiceSummary', serviceSummary_serviceUrl - A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.

$sel:status:ServiceSummary', serviceSummary_status - 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.

$sel:updatedAt:ServiceSummary', serviceSummary_updatedAt - The time when the App Runner service was last updated. It's in theUnix time stamp format.

serviceSummary_createdAt :: Lens' ServiceSummary (Maybe UTCTime) Source #

The time when the App Runner service was created. It's in the Unix time stamp format.

serviceSummary_serviceArn :: Lens' ServiceSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of this service.

serviceSummary_serviceId :: Lens' ServiceSummary (Maybe Text) Source #

An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.

serviceSummary_serviceName :: Lens' ServiceSummary (Maybe Text) Source #

The customer-provided service name.

serviceSummary_serviceUrl :: Lens' ServiceSummary (Maybe Text) Source #

A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.

serviceSummary_status :: Lens' ServiceSummary (Maybe ServiceStatus) Source #

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.

serviceSummary_updatedAt :: Lens' ServiceSummary (Maybe UTCTime) Source #

The time when the App Runner service was last updated. It's in theUnix time stamp format.