n8n-nodes-base
Version:
Base nodes of n8n
28 lines (24 loc) • 630 B
text/typescript
/**
* AWS S3 Node - Version 2
* Discriminator: resource=bucket, operation=delete
*/
interface Credentials {
aws: CredentialReference;
awsAssumeRole: CredentialReference;
}
/** Delete a bucket */
export type AwsS3V2BucketDeleteParams = {
resource: 'bucket';
operation: 'delete';
authentication?: 'iam' | 'assumeRole' | Expression<string>;
/**
* Name of the AWS S3 bucket to delete
*/
name?: string | Expression<string> | PlaceholderValue;
};
export type AwsS3V2BucketDeleteNode = {
type: 'n8n-nodes-base.awsS3';
version: 2;
credentials?: Credentials;
config: NodeConfig<AwsS3V2BucketDeleteParams>;
};