For the complete documentation index, see llms.txt. This page is also available as Markdown.

DeleteBucket

Delete AWS S3 Bucket.

Task version: 2.1.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

BucketName : String

AWS S3 bucket's name to be deleted.

Must follow AWS S3 bucket naming requirements.

See https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html

Default: - Example: my-example-bucket

Task Result

Name
Description

Success : Boolean

Indicates whether the delete bucket operation completed successfully. Returns true if the bucket was deleted or if the bucket did not exist. Returns false only when an error occurred and ThrowErrorOnFailure is false. Example: true

Error : Error

Contains error information when the operation fails. This property is null when Success is true. Only populated when ThrowErrorOnFailure is false and an error occurs. Example: null

Task Changelog

Changelog for Task Frends.AmazonS3.DeleteBucket.

[2.1.0] - 2025-12-29

Changed

  • Updated AWS SDK version.

[2.0.0] - 2025-07-16

  • [Breaking] Moved Connection.BucketName to Input.BucketName - update your processes to use the Input tab for bucket name configuration

  • [Breaking] Added new Options parameter class with error handling configuration

  • [Breaking] Updated Result class structure - removed Data property and added Error property for consistent error reporting

  • Added ThrowErrorOnFailure option (default: false) to control exception throwing behavior

  • Added ErrorMessageOnFailure option for custom error messages

  • Updated project to target .NET 8.0 for improved performance and compatibility

  • Enhanced XML documentation with better examples and descriptions

[1.0.0] - 2023-07-31

Added

  • Initial implementation

Last updated

Was this helpful?