Make change to AwsS3 Integration to support list

Signed-off-by: Sean Tan <seant@splunk.com>
This commit is contained in:
Sean Tan
2021-07-27 15:21:54 -07:00
parent c0e5f6d6dd
commit 2e5e2decc7
13 changed files with 293 additions and 71 deletions
+9 -2
View File
@@ -165,7 +165,14 @@ export interface Config {
};
/** Integration configuration for AWS S3 Service */
awsS3?: {
awsS3?: Array<{
/**
* The host of the target that this matches on, e.g. "amazonaws.com".
*
* @visibility frontend
*/
host: string;
/**
/**
* Account access key used to authenticate requests.
* @visibility backend
@@ -176,6 +183,6 @@ export interface Config {
* @visibility secret
*/
secretAccessKey?: string;
};
}>;
};
}