12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
- * SPDX-License-Identifier: Apache-2.0.
- */
- #include <aws/auth/private/aws_profile.h>
- #include <aws/auth/credentials.h>
- #include <aws/common/environment.h>
- #include <aws/common/string.h>
- static const struct aws_string *s_profile_get_property_value(
- const struct aws_profile *profile,
- const struct aws_string *property_name) {
- const struct aws_profile_property *property = aws_profile_get_property(profile, property_name);
- if (property == NULL) {
- return NULL;
- }
- return aws_profile_property_get_value(property);
- }
- AWS_STATIC_STRING_FROM_LITERAL(s_access_key_id_profile_var, "aws_access_key_id");
- AWS_STATIC_STRING_FROM_LITERAL(s_secret_access_key_profile_var, "aws_secret_access_key");
- AWS_STATIC_STRING_FROM_LITERAL(s_session_token_profile_var, "aws_session_token");
- struct aws_credentials *aws_credentials_new_from_profile(
- struct aws_allocator *allocator,
- const struct aws_profile *profile) {
- const struct aws_string *access_key = s_profile_get_property_value(profile, s_access_key_id_profile_var);
- const struct aws_string *secret_key = s_profile_get_property_value(profile, s_secret_access_key_profile_var);
- if (access_key == NULL || secret_key == NULL) {
- return NULL;
- }
- const struct aws_string *session_token = s_profile_get_property_value(profile, s_session_token_profile_var);
- return aws_credentials_new_from_string(allocator, access_key, secret_key, session_token, UINT64_MAX);
- }
|