Skip to content

Commit

Permalink
Reorder fields
Browse files Browse the repository at this point in the history
  • Loading branch information
luxaritas authored Dec 14, 2023
1 parent e5265b3 commit ef6f775
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/aws-cdk-lib/aws-ecs/lib/base/task-definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1240,11 +1240,6 @@ export function isExternalCompatible(compatibility: Compatibility): boolean {
* the `latest` revision
*/
export class TaskDefinitionRevision {
/**
* The string representation of this revision
*/
public readonly revision: string;

/**
* The most recent revision of a task
*/
Expand All @@ -1260,6 +1255,11 @@ export class TaskDefinitionRevision {
return new TaskDefinitionRevision(revision.toString());
}

/**
* The string representation of this revision
*/
public readonly revision: string;

private constructor(revision: string) {
this.revision = revision;
}
Expand Down

0 comments on commit ef6f775

Please sign in to comment.