/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ApiGatewayV2::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; CreateAuthorizerRequest::CreateAuthorizerRequest() : m_apiIdHasBeenSet(false), m_authorizerCredentialsArnHasBeenSet(false), m_authorizerPayloadFormatVersionHasBeenSet(false), m_authorizerResultTtlInSeconds(0), m_authorizerResultTtlInSecondsHasBeenSet(false), m_authorizerType(AuthorizerType::NOT_SET), m_authorizerTypeHasBeenSet(false), m_authorizerUriHasBeenSet(false), m_enableSimpleResponses(false), m_enableSimpleResponsesHasBeenSet(false), m_identitySourceHasBeenSet(false), m_identityValidationExpressionHasBeenSet(false), m_jwtConfigurationHasBeenSet(false), m_nameHasBeenSet(false) { } Aws::String CreateAuthorizerRequest::SerializePayload() const { JsonValue payload; if(m_authorizerCredentialsArnHasBeenSet) { payload.WithString("authorizerCredentialsArn", m_authorizerCredentialsArn); } if(m_authorizerPayloadFormatVersionHasBeenSet) { payload.WithString("authorizerPayloadFormatVersion", m_authorizerPayloadFormatVersion); } 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_enableSimpleResponsesHasBeenSet) { payload.WithBool("enableSimpleResponses", m_enableSimpleResponses); } if(m_identitySourceHasBeenSet) { Aws::Utils::Array 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.View().WriteReadable(); }