/**
 * S3 Node - Version 1
 * Discriminator: resource=bucket, operation=delete
 */


interface Credentials {
  s3: CredentialReference;
}

/** Delete a bucket */
export type S3V1BucketDeleteParams = {
  resource: 'bucket';
  operation: 'delete';
/**
 * Name of the AWS S3 bucket to delete
 */
    name?: string | Expression<string> | PlaceholderValue;
};

export type S3V1BucketDeleteNode = {
  type: 'n8n-nodes-base.s3';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<S3V1BucketDeleteParams>;
};