// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 /** * 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 * * For information on the structure of the code examples and how to build and run the examples, see * https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/getting-started-code-examples.html. * **/ // snippet-start:[ec2.cpp.release_address.inc] #include #include #include // snippet-end:[ec2.cpp.release_address.inc] #include "ec2_samples.h" // snippet-start:[cpp.example_code.ec2.ReleaseAddress] //! Release an Elastic IP address. /*! \param clientConfiguration: AWS client configuration. \return bool: Function succeeded. */ bool AwsDoc::EC2::releaseAddress(const Aws::String &allocationID, const Aws::Client::ClientConfiguration &clientConfiguration) { // snippet-start:[ec2.cpp.release_address.code] Aws::EC2::EC2Client ec2(clientConfiguration); Aws::EC2::Model::ReleaseAddressRequest request; request.SetAllocationId(allocationID); Aws::EC2::Model::ReleaseAddressOutcome outcome = ec2.ReleaseAddress(request); if (!outcome.IsSuccess()) { std::cerr << "Failed to release Elastic IP address " << allocationID << ":" << outcome.GetError().GetMessage() << std::endl; } else { std::cout << "Successfully released Elastic IP address " << allocationID << std::endl; } // snippet-end:[ec2.cpp.release_address.code] return outcome.IsSuccess(); } // snippet-end:[cpp.example_code.ec2.ReleaseAddress] /* * * main function * * Usage: 'run_release_address ' * * Prerequisites: An allocation ID for an Elastic IP address. * */ #ifndef TESTING_BUILD int main(int argc, char **argv) { if (argc != 2) { std::cout << "Usage: run_release_address " << std::endl; return 1; } Aws::SDKOptions options; Aws::InitAPI(options); { Aws::String allocationID = argv[1]; Aws::Client::ClientConfiguration clientConfig; // Optional: Set to the AWS Region (overrides config file). // clientConfig.region = "us-east-1"; AwsDoc::EC2::releaseAddress(allocationID, clientConfig); } Aws::ShutdownAPI(options); return 0; } #endif // TESTING_BUILD