/** * AWS Certificate Manager Node - Version 1 * Discriminator: resource=certificate, operation=get */ interface Credentials { aws: CredentialReference; awsAssumeRole: CredentialReference; } /** Get a certificate */ export type AwsCertificateManagerV1CertificateGetParams = { resource: 'certificate'; operation: 'get'; authentication?: 'iam' | 'assumeRole' | Expression; /** * String that contains the ARN of the ACM certificate to be renewed. This must be of the form: arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012. */ certificateArn?: string | Expression | PlaceholderValue; }; export type AwsCertificateManagerV1CertificateGetNode = { type: 'n8n-nodes-base.awsCertificateManager'; version: 1; credentials?: Credentials; config: NodeConfig; };