We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3715f6 commit 7278eafCopy full SHA for 7278eaf
src/types/api/schema/externalDataSource.ts
@@ -14,6 +14,7 @@ export interface TExternalDataSourceDescription {
14
interface TAuth {
15
None?: NoneAuth;
16
ServiceAccount?: ServiceAccountAuth;
17
+ Aws?: AwsAuth;
18
}
19
20
interface NoneAuth {}
@@ -22,3 +23,8 @@ interface ServiceAccountAuth {
22
23
Id?: string;
24
SecretName?: string;
25
26
+interface AwsAuth {
27
+ AwsSecretAccessKeySecretName?: string;
28
+ AwsRegion?: string;
29
+ AwsAccessKeyIdSecretName?: string;
30
+}
0 commit comments