This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-apigatewayv2/source/model/Authorizer.cpp

191 lines
4.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/apigatewayv2/model/Authorizer.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace ApiGatewayV2
{
namespace Model
{
Authorizer::Authorizer() :
m_authorizerCredentialsArnHasBeenSet(false),
m_authorizerIdHasBeenSet(false),
m_authorizerResultTtlInSeconds(0),
m_authorizerResultTtlInSecondsHasBeenSet(false),
m_authorizerType(AuthorizerType::NOT_SET),
m_authorizerTypeHasBeenSet(false),
m_authorizerUriHasBeenSet(false),
m_identitySourceHasBeenSet(false),
m_identityValidationExpressionHasBeenSet(false),
m_jwtConfigurationHasBeenSet(false),
m_nameHasBeenSet(false)
{
}
Authorizer::Authorizer(JsonView jsonValue) :
m_authorizerCredentialsArnHasBeenSet(false),
m_authorizerIdHasBeenSet(false),
m_authorizerResultTtlInSeconds(0),
m_authorizerResultTtlInSecondsHasBeenSet(false),
m_authorizerType(AuthorizerType::NOT_SET),
m_authorizerTypeHasBeenSet(false),
m_authorizerUriHasBeenSet(false),
m_identitySourceHasBeenSet(false),
m_identityValidationExpressionHasBeenSet(false),
m_jwtConfigurationHasBeenSet(false),
m_nameHasBeenSet(false)
{
*this = jsonValue;
}
Authorizer& Authorizer::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("authorizerCredentialsArn"))
{
m_authorizerCredentialsArn = jsonValue.GetString("authorizerCredentialsArn");
m_authorizerCredentialsArnHasBeenSet = true;
}
if(jsonValue.ValueExists("authorizerId"))
{
m_authorizerId = jsonValue.GetString("authorizerId");
m_authorizerIdHasBeenSet = true;
}
if(jsonValue.ValueExists("authorizerResultTtlInSeconds"))
{
m_authorizerResultTtlInSeconds = jsonValue.GetInteger("authorizerResultTtlInSeconds");
m_authorizerResultTtlInSecondsHasBeenSet = true;
}
if(jsonValue.ValueExists("authorizerType"))
{
m_authorizerType = AuthorizerTypeMapper::GetAuthorizerTypeForName(jsonValue.GetString("authorizerType"));
m_authorizerTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("authorizerUri"))
{
m_authorizerUri = jsonValue.GetString("authorizerUri");
m_authorizerUriHasBeenSet = true;
}
if(jsonValue.ValueExists("identitySource"))
{
Array<JsonView> identitySourceJsonList = jsonValue.GetArray("identitySource");
for(unsigned identitySourceIndex = 0; identitySourceIndex < identitySourceJsonList.GetLength(); ++identitySourceIndex)
{
m_identitySource.push_back(identitySourceJsonList[identitySourceIndex].AsString());
}
m_identitySourceHasBeenSet = true;
}
if(jsonValue.ValueExists("identityValidationExpression"))
{
m_identityValidationExpression = jsonValue.GetString("identityValidationExpression");
m_identityValidationExpressionHasBeenSet = true;
}
if(jsonValue.ValueExists("jwtConfiguration"))
{
m_jwtConfiguration = jsonValue.GetObject("jwtConfiguration");
m_jwtConfigurationHasBeenSet = true;
}
if(jsonValue.ValueExists("name"))
{
m_name = jsonValue.GetString("name");
m_nameHasBeenSet = true;
}
return *this;
}
JsonValue Authorizer::Jsonize() const
{
JsonValue payload;
if(m_authorizerCredentialsArnHasBeenSet)
{
payload.WithString("authorizerCredentialsArn", m_authorizerCredentialsArn);
}
if(m_authorizerIdHasBeenSet)
{
payload.WithString("authorizerId", m_authorizerId);
}
if(m_authorizerResultTtlInSecondsHasBeenSet)
{
payload.WithInteger("authorizerResultTtlInSeconds", m_authorizerResultTtlInSeconds);
}
if(m_authorizerTypeHasBeenSet)
{
payload.WithString("authorizerType", AuthorizerTypeMapper::GetNameForAuthorizerType(m_authorizerType));
}
if(m_authorizerUriHasBeenSet)
{
payload.WithString("authorizerUri", m_authorizerUri);
}
if(m_identitySourceHasBeenSet)
{
Array<JsonValue> identitySourceJsonList(m_identitySource.size());
for(unsigned identitySourceIndex = 0; identitySourceIndex < identitySourceJsonList.GetLength(); ++identitySourceIndex)
{
identitySourceJsonList[identitySourceIndex].AsString(m_identitySource[identitySourceIndex]);
}
payload.WithArray("identitySource", std::move(identitySourceJsonList));
}
if(m_identityValidationExpressionHasBeenSet)
{
payload.WithString("identityValidationExpression", m_identityValidationExpression);
}
if(m_jwtConfigurationHasBeenSet)
{
payload.WithObject("jwtConfiguration", m_jwtConfiguration.Jsonize());
}
if(m_nameHasBeenSet)
{
payload.WithString("name", m_name);
}
return payload;
}
} // namespace Model
} // namespace ApiGatewayV2
} // namespace Aws