Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(apprunner): the Service class does not implement IService #32771

Merged
merged 3 commits into from
Jan 7, 2025
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