UNPKG

n8n

Version:

n8n Workflow Automation Tool

44 lines (43 loc) 1.02 kB
import type { SecretsProviderSettings } from '../../../interfaces'; export type SecretsNamesPage = { NextToken?: string; SecretList: SecretName[]; }; export type SecretsPage = { NextToken?: string; SecretValues: SecretValue[]; }; type SecretName = { ARN: string; CreatedDate: number; LastAccessedDate: number; LastChangedDate: number; Name: string; Tags: string[]; }; type SecretValue = { ARN: string; CreatedDate: number; Name: string; SecretString: string; VersionId: string; }; export type Secret = { secretName: string; secretValue: string; }; export type ConnectionTestResult = Promise<[boolean] | [boolean, string]>; export type AwsSecretsManagerContext = SecretsProviderSettings<{ region: string; authMethod: 'iamUser'; accessKeyId: string; secretAccessKey: string; }>; export type AwsSecretsClientSettings = { region: string; host: string; url: string; accessKeyId: string; secretAccessKey: string; }; export {};