Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
Signed-off-by: Gustav Grusell <[email protected]>
  • Loading branch information
grusell committed Sep 6, 2024
1 parent 6ea1aaa commit 3bb685e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pipelines/aws/aws-pipeline-configuration.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { AccelerationMode } from '@aws-sdk/client-mediaconvert';

export type AWSPipelineConfiguration = {
inputBucket: string;
outputBucket: string;
Expand All @@ -9,5 +11,5 @@ export type AWSPipelineConfiguration = {
ecsCluster: string;
ecsContainerName: string;
ecsTaskDefinition: string;
accelerationMode?: string;
accelerationMode?: AccelerationMode;
};

0 comments on commit 3bb685e

Please sign in to comment.