/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The authorization configuration in case the HTTP endpoint requires
* authorization.See Also:
AWS
* API Reference
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The authorization type that the HTTP endpoint requires.
* AWS_IAM: The authorization type is Signature Version 4 (SigV4).
The Identity and Access Management (IAM) settings.
*/ inline const AwsIamConfig& GetAwsIamConfig() const{ return m_awsIamConfig; } /** *The Identity and Access Management (IAM) settings.
*/ inline bool AwsIamConfigHasBeenSet() const { return m_awsIamConfigHasBeenSet; } /** *The Identity and Access Management (IAM) settings.
*/ inline void SetAwsIamConfig(const AwsIamConfig& value) { m_awsIamConfigHasBeenSet = true; m_awsIamConfig = value; } /** *The Identity and Access Management (IAM) settings.
*/ inline void SetAwsIamConfig(AwsIamConfig&& value) { m_awsIamConfigHasBeenSet = true; m_awsIamConfig = std::move(value); } /** *The Identity and Access Management (IAM) settings.
*/ inline AuthorizationConfig& WithAwsIamConfig(const AwsIamConfig& value) { SetAwsIamConfig(value); return *this;} /** *The Identity and Access Management (IAM) settings.
*/ inline AuthorizationConfig& WithAwsIamConfig(AwsIamConfig&& value) { SetAwsIamConfig(std::move(value)); return *this;} private: AuthorizationType m_authorizationType; bool m_authorizationTypeHasBeenSet = false; AwsIamConfig m_awsIamConfig; bool m_awsIamConfigHasBeenSet = false; }; } // namespace Model } // namespace AppSync } // namespace Aws