Skip to content

Commit

Permalink
fix: Remove outdate JSdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
marsavar committed Jun 20, 2023
1 parent 1c63d49 commit e4c60c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions src/constructs/ecs/__snapshots__/ecs-task.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ exports[`The GuEcsTask pattern should create the correct resources with lots of
"GuStack",
"GuEcsTask",
"GuDistributionBucketParameter",
"GuSubnetListParameter",
],
"gu:cdk:version": "TEST",
},
Expand All @@ -127,11 +126,6 @@ exports[`The GuEcsTask pattern should create the correct resources with lots of
"Description": "SSM parameter containing the S3 bucket name holding distribution artifacts",
"Type": "AWS::SSM::Parameter::Value<String>",
},
"ecstestPrivateSubnets": {
"Default": "/account/vpc/primary/subnets/private",
"Description": "A list of private subnets",
"Type": "AWS::SSM::Parameter::Value<List<AWS::EC2::Subnet::Id>>",
},
},
"Resources": {
"ecstestexecutionfailedC93F511B": {
Expand Down
1 change: 0 additions & 1 deletion src/constructs/ecs/ecs-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ const getContainer = (config: ContainerConfiguration) => {
* Note that if your task reliably completes in less than 15 minutes then you should probably use a [[`GuLambda`]] instead. This
* pattern was mainly created to work around the 15 minute lambda timeout.
*
* If the `subnets` prop is not defined, the task will run in a private subnet by default.
*/
export class GuEcsTask extends Construct {
stateMachine: StateMachine;
Expand Down
1 change: 0 additions & 1 deletion src/patterns/scheduled-ecs-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export interface GuScheduledEcsTaskProps extends GuEcsTaskProps {
* Note that if your task reliably completes in less than 15 minutes then you should probably use a [[`GuScheduledLambda`]] instead. This
* pattern was mainly created to work around the 15 minute lambda timeout.
*
* If the `subnets` prop is not defined, the task will run in a private subnet by default.
*/
export class GuScheduledEcsTask extends GuAppAwareConstruct(GuEcsTask) {
constructor(scope: GuStack, id: string, props: GuScheduledEcsTaskProps) {
Expand Down

0 comments on commit e4c60c2

Please sign in to comment.