SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 1 Java
2021-12-15 10:58:21 -05:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#include <iostream>
#include <aws/core/Aws.h>
#include <aws/s3/S3Client.h>
#include <aws/s3/model/DeleteBucketRequest.h>
#include "s3_examples.h"
/**
* Before running this C++ code example, set up your development environment, including your credentials.
*
* For more information, see the following documentation topic:
*
* https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/getting-started.html
*
* Purpose
*
* Demonstrates using the AWS SDK for C++ to delete an S3 bucket.
*
2021-12-15 10:58:21 -05:00
*/
//! Routine which demonstrates deleting an S3 bucket.
/*!
\param bucketName: Name of the bucket to delete.
\param clientConfig: Aws client configuration.
\return bool: Function succeeded.
*/
2022-07-28 18:11:43 -04:00
// snippet-start:[s3.cpp.delete_bucket.code]
bool AwsDoc::S3::deleteBucket(const Aws::String &bucketName,
const Aws::S3::S3ClientConfiguration &clientConfig) {
2022-07-28 18:11:43 -04:00
Aws::S3::S3Client client(clientConfig);
Aws::S3::Model::DeleteBucketRequest request;
request.SetBucket(bucketName);
Aws::S3::Model::DeleteBucketOutcome outcome =
client.DeleteBucket(request);
if (!outcome.IsSuccess()) {
const Aws::S3::S3Error &err = outcome.GetError();
std::cerr << "Error: deleteBucket: " <<
2022-07-28 18:11:43 -04:00
err.GetExceptionName() << ": " << err.GetMessage() << std::endl;
} else {
2022-07-28 18:11:43 -04:00
std::cout << "The bucket was deleted" << std::endl;
}
return outcome.IsSuccess();
2022-07-28 18:11:43 -04:00
}
// snippet-end:[s3.cpp.delete_bucket.code]
/*
*
* main function
*
* Prerequisites: The bucket to be deleted.
*
* usage: run_delete_bucket <bucket_name>
*
*/
2022-07-28 18:11:43 -04:00
#ifndef EXCLUDE_MAIN_FUNCTION
2021-12-15 10:58:21 -05:00
int main(int argc, char* argv[]) {
Aws::SDKOptions options;
Aws::InitAPI(options);
2021-12-15 10:58:21 -05:00
if (argc != 2) {
std::cout << R"(
Usage:
run_delete_bucket <bucket_name>
Where:
bucket_name - The name of the bucket to delete.
)" << std::endl;
return 1;
}
Aws::String bucketName = argv[1];
{
Aws::S3::S3ClientConfiguration clientConfig;
// Optional: Set to the AWS Region in which the bucket was created (overrides config file).
// clientConfig.region = "us-east-1";
AwsDoc::S3::deleteBucket(bucketName, clientConfig);
}
2021-12-15 10:58:21 -05:00
ShutdownAPI(options);
return 0;
}
#endif // EXCLUDE_MAIN_FUNCTION