Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1103,6 +1103,7 @@ export interface IService extends cdk.IResource {

/**
* The ARN of the service.
* @attribute
*/
readonly serviceArn: string;
}
Expand Down Expand Up @@ -1178,7 +1179,7 @@ export abstract class Secret {
/**
* The App Runner Service.
*/
export class Service extends cdk.Resource implements iam.IGrantable {
export class Service extends cdk.Resource implements IService, iam.IGrantable {
/**
* Import from service name.
*/
Expand Down
Loading