/* 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. * * Purpose * * Demonstrates getting a server certificate. * */ //snippet-start:[iam.cpp.get_server_cert.inc] #include #include #include #include #include #include "iam_samples.h" //snippet-end:[iam.cpp.get_server_cert.inc] //! Gets a server certificate. /*! \sa getServerCertificate() \param certificateName: The certificate name. \param clientConfig: Aws client configuration. \return bool: Successful completion. */ // snippet-start:[iam.cpp.get_server_cert.code] bool AwsDoc::IAM::getServerCertificate(const Aws::String &certificateName, const Aws::Client::ClientConfiguration &clientConfig) { Aws::IAM::IAMClient iam(clientConfig); Aws::IAM::Model::GetServerCertificateRequest request; request.SetServerCertificateName(certificateName); auto outcome = iam.GetServerCertificate(request); bool result = true; if (!outcome.IsSuccess()) { if (outcome.GetError().GetErrorType() != Aws::IAM::IAMErrors::NO_SUCH_ENTITY) { std::cerr << "Error getting server certificate " << certificateName << ": " << outcome.GetError().GetMessage() << std::endl; result = false; } else { std::cout << "Certificate '" << certificateName << "' not found." << std::endl; } } else { const auto &certificate = outcome.GetResult().GetServerCertificate(); std::cout << "Name: " << certificate.GetServerCertificateMetadata().GetServerCertificateName() << std::endl << "Body: " << certificate.GetCertificateBody() << std::endl << "Chain: " << certificate.GetCertificateChain() << std::endl; } return result; } // snippet-end:[iam.cpp.get_server_cert.code] /* * * main function * * Prerequisites: Existing server certificate. * * Usage: 'run_get_server_certificate ' * */ #ifndef TESTING_BUILD int main(int argc, char **argv) { if (argc != 2) { std::cout << "Usage: run_get_server_certificate " << std::endl; return 1; } Aws::SDKOptions options; Aws::InitAPI(options); { Aws::String certificateName(argv[1]); 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::getServerCertificate(certificateName, clientConfig); } Aws::ShutdownAPI(options); return 0; } #endif // TESTING_BUILD