Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
philmcmahon committed Dec 20, 2024
1 parent 2605a84 commit 263e613
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constructs/ecs/ecs-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Alarm, TreatMissingData } from "aws-cdk-lib/aws-cloudwatch";
import { SnsAction } from "aws-cdk-lib/aws-cloudwatch-actions";
import type { ISecurityGroup, ISubnet, IVpc } from "aws-cdk-lib/aws-ec2";
import type { IRepository } from "aws-cdk-lib/aws-ecr";
import type {ContainerDefinition, RepositoryImageProps} from "aws-cdk-lib/aws-ecs";
import type { ContainerDefinition, RepositoryImageProps } from "aws-cdk-lib/aws-ecs";
import {
Cluster,
Compatibility,
Expand Down Expand Up @@ -162,7 +162,7 @@ export class GuEcsTask extends Construct {
public readonly stateMachine: StateMachine;
public readonly taskDefinition: TaskDefinition;
public readonly containerDefinition: ContainerDefinition;
public readonly task: EcsRunTask
public readonly task: EcsRunTask;

constructor(scope: GuStack, id: string, props: GuEcsTaskProps) {
super(scope, id);
Expand Down

0 comments on commit 263e613

Please sign in to comment.