Skip to content

Commit 7278eaf

Browse files
committed
types
1 parent f3715f6 commit 7278eaf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/types/api/schema/externalDataSource.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export interface TExternalDataSourceDescription {
1414
interface TAuth {
1515
None?: NoneAuth;
1616
ServiceAccount?: ServiceAccountAuth;
17+
Aws?: AwsAuth;
1718
}
1819

1920
interface NoneAuth {}
@@ -22,3 +23,8 @@ interface ServiceAccountAuth {
2223
Id?: string;
2324
SecretName?: string;
2425
}
26+
interface AwsAuth {
27+
AwsSecretAccessKeySecretName?: string;
28+
AwsRegion?: string;
29+
AwsAccessKeyIdSecretName?: string;
30+
}

0 commit comments

Comments
 (0)