ServiceAttributes

class aws_cdk.aws_apprunner.ServiceAttributes(*, service_arn, service_name, service_status, service_url)

Bases: object

(experimental) Attributes for the App Runner Service.

Parameters:
  • service_arn (str) – (experimental) The ARN of the service.

  • service_name (str) – (experimental) The name of the service.

  • service_status (str) – (experimental) The status of the service.

  • service_url (str) – (experimental) The URL of the service.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_apprunner as apprunner

service_attributes = apprunner.ServiceAttributes(
    service_arn="serviceArn",
    service_name="serviceName",
    service_status="serviceStatus",
    service_url="serviceUrl"
)

Attributes

service_arn

(experimental) The ARN of the service.

Stability:

experimental

service_name

(experimental) The name of the service.

Stability:

experimental

service_status

(experimental) The status of the service.

Stability:

experimental

service_url

(experimental) The URL of the service.

Stability:

experimental