interface ServiceAttributes
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppRunner.ServiceAttributes | 
|  Java | software.amazon.awscdk.services.apprunner.ServiceAttributes | 
|  Python | aws_cdk.aws_apprunner.ServiceAttributes | 
|  TypeScript (source) | @aws-cdk/aws-apprunner»ServiceAttributes | 
Attributes for the App Runner Service.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apprunner from '@aws-cdk/aws-apprunner';
const serviceAttributes: apprunner.ServiceAttributes = {
  serviceArn: 'serviceArn',
  serviceName: 'serviceName',
  serviceStatus: 'serviceStatus',
  serviceUrl: 'serviceUrl',
};
Properties
| Name | Type | Description | 
|---|---|---|
| service | string | The ARN of the service. | 
| service | string | The name of the service. | 
| service | string | The status of the service. | 
| service | string | The URL of the service. | 
serviceArn
Type:
string
The ARN of the service.
serviceName
Type:
string
The name of the service.
serviceStatus
Type:
string
The status of the service.
serviceUrl
Type:
string
The URL of the service.
