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 47 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
/**
* 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 displaying the last time an access key was used.
*
2021-11-15 13:15:43 +00:00
*/
// snippet-start:[iam.cpp.access_key_last_used.inc]
#include <aws/core/Aws.h>
#include <aws/iam/IAMClient.h>
#include <aws/iam/model/GetAccessKeyLastUsedRequest.h>
#include <aws/iam/model/GetAccessKeyLastUsedResult.h>
#include <iostream>
#include "iam_samples.h"
// snippet-end:[iam.cpp.access_key_last_used.inc]
//! Displays the last time an access key was used.
/*!
\sa accessKeyLastUsed()
\param secretKeyID: The secret key ID.
2022-10-03 09:54:27 -04:00
\param clientConfig: Aws client configuration.
\return bool: Successful completion.
*/
2022-10-12 14:52:10 -04:00
// snippet-start:[iam.cpp.access_key_last_used.code]
bool AwsDoc::IAM::accessKeyLastUsed(const Aws::String &secretKeyID,
const Aws::Client::ClientConfiguration &clientConfig) {
Aws::IAM::IAMClient iam(clientConfig);
Aws::IAM::Model::GetAccessKeyLastUsedRequest request;
request.SetAccessKeyId(secretKeyID);
Aws::IAM::Model::GetAccessKeyLastUsedOutcome outcome = iam.GetAccessKeyLastUsed(
request);
if (!outcome.IsSuccess()) {
std::cerr << "Error querying last used time for access key " <<
secretKeyID << ":" << outcome.GetError().GetMessage() << std::endl;
}
else {
Aws::String lastUsedTimeString =
outcome.GetResult()
.GetAccessKeyLastUsed()
.GetLastUsedDate()
.ToGmtString(Aws::Utils::DateFormat::ISO_8601);
std::cout << "Access key " << secretKeyID << " last used at time " <<
lastUsedTimeString << std::endl;
}
return outcome.IsSuccess();
}
// snippet-end:[iam.cpp.access_key_last_used.code]
2022-09-30 14:55:56 -04:00
/*
*
* main function
*
* Prerequisites: Existing access key.
2022-09-30 14:55:56 -04:00
*
* Usage: 'run_access_key_last_used <access_key_id>'
*
*/
#ifndef TESTING_BUILD
int main(int argc, char **argv) {
if (argc != 2) {
std::cout << "Usage: run_access_key_last_used <access_key_id>" <<
std::endl;
2021-11-15 13:15:43 +00:00
return 1;
}
Aws::SDKOptions options;
Aws::InitAPI(options);
{
Aws::Client::ClientConfiguration clientConfig;
// Optional: Set to the AWS Region in which the bucket was created (overrides config file).
// clientConfig.region = "us-east-1";
2021-11-15 13:15:43 +00:00
Aws::String keyId(argv[1]);
AwsDoc::IAM::accessKeyLastUsed(keyId, clientConfig);
}
2021-11-15 13:15:43 +00:00
Aws::ShutdownAPI(options);
return 0;
}
2022-09-30 14:55:56 -04:00
#endif // TESTING_BUILD