Started changes from suggestions made on recent PR.

Signed-off-by: Sean Tan <seant@splunk.com>
This commit is contained in:
Sean Tan
2021-07-26 09:47:04 -07:00
parent bb083bea35
commit b8cb120092
5 changed files with 31 additions and 10 deletions
+14
View File
@@ -163,5 +163,19 @@ export interface Config {
*/
privateKey?: string;
};
/** Integration configuration for AWS S3 Service */
awsS3?: {
/**
* Account access key used to authenticate requests.
* @visibility backend
*/
accessKeyID?: string;
/**
* Account secret key used to authenticate requests.
* @visibility secret
*/
secretAccessKey?: string;
};
};
}