n8n-nodes-base
Version:
Base nodes of n8n
28 lines (24 loc) • 872 B
text/typescript
/**
* 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>;
/**
* 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<string> | PlaceholderValue;
};
export type AwsCertificateManagerV1CertificateGetNode = {
type: 'n8n-nodes-base.awsCertificateManager';
version: 1;
credentials?: Credentials;
config: NodeConfig<AwsCertificateManagerV1CertificateGetParams>;
};