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 7 Java
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2021-11-15 13:15:43 +00:00
/**
2022-10-12 14:52:10 -04:00
* Before running this C++ code example, set up your development environment,
* including your credentials.
*
* For more information, see the following documentation topic:
2022-10-14 09:27:14 -04:00
* https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/getting-started.html.
2022-10-12 14:52:10 -04:00
*
* 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.
*
* Purpose
*
* Demonstrates deleting an IAM policy.
* This API only works for policies that have not been associated with other resources.
2022-10-12 14:52:10 -04:00
* To delete a policy in the non-trivial case, use the DeletePolicy operation within the
* aws-cpp-sdk-access-management high-level SDK.
2022-10-12 14:52:10 -04:00
*
*/
// snippet-start:[iam.cpp.delete_policy.inc]
#include <aws/core/Aws.h>
#include <aws/iam/IAMClient.h>
#include <aws/iam/model/DeletePolicyRequest.h>
#include <iostream>
#include "iam_samples.h"
// snippet-end:[iam.cpp.delete_policy.inc]
//! Deletes an IAM policy.
/*!
\sa deletePolicy()
2022-10-12 14:52:10 -04:00
\param policyArn: The policy Amazon Resource Name (ARN).
\param clientConfig: Aws client configuration.
\return bool: Successful completion.
*/
2022-10-12 14:52:10 -04:00
// snippet-start:[iam.cpp.delete_policy.code]
bool AwsDoc::IAM::deletePolicy(const Aws::String &policyArn,
const Aws::Client::ClientConfiguration &clientConfig) {
Aws::IAM::IAMClient iam(clientConfig);
Aws::IAM::Model::DeletePolicyRequest request;
request.SetPolicyArn(policyArn);
auto outcome = iam.DeletePolicy(request);
if (!outcome.IsSuccess()) {
std::cerr << "Error deleting policy with arn " << policyArn << ": "
<< outcome.GetError().GetMessage() << std::endl;
}
else {
std::cout << "Successfully deleted policy with arn " << policyArn
<< std::endl;
}
return outcome.IsSuccess();
}
// snippet-end:[iam.cpp.delete_policy.code]
/*
*
* main function
*
* Prerequisites: Existing IAM policy.
*
* Usage: 'run_delete_policy <policy_arn>'
*
2021-11-15 13:15:43 +00:00
*/
#ifndef TESTING_BUILD
int main(int argc, char **argv) {
if (argc != 2) {
std::cout << "Usage: run_delete_policy <policy_arn>" << std::endl;
2021-11-15 13:15:43 +00:00
return 1;
}
Aws::SDKOptions options;
Aws::InitAPI(options);
{
Aws::String policyArn(argv[1]);
2021-11-15 13:15:43 +00:00
Aws::Client::ClientConfiguration clientConfig;
// Optional: Set to the AWS Region in which the bucket was created (overrides config file).
// clientConfig.region = "us-east-1";
AwsDoc::IAM::deletePolicy(policyArn, clientConfig);
2021-11-15 13:15:43 +00:00
}
Aws::ShutdownAPI(options);
return 0;
}
#endif // TESTING_BUILD