/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The authorizer summary.See Also:
AWS
* API Reference
The authorizer name.
*/ inline const Aws::String& GetAuthorizerName() const{ return m_authorizerName; } /** *The authorizer name.
*/ inline bool AuthorizerNameHasBeenSet() const { return m_authorizerNameHasBeenSet; } /** *The authorizer name.
*/ inline void SetAuthorizerName(const Aws::String& value) { m_authorizerNameHasBeenSet = true; m_authorizerName = value; } /** *The authorizer name.
*/ inline void SetAuthorizerName(Aws::String&& value) { m_authorizerNameHasBeenSet = true; m_authorizerName = std::move(value); } /** *The authorizer name.
*/ inline void SetAuthorizerName(const char* value) { m_authorizerNameHasBeenSet = true; m_authorizerName.assign(value); } /** *The authorizer name.
*/ inline AuthorizerSummary& WithAuthorizerName(const Aws::String& value) { SetAuthorizerName(value); return *this;} /** *The authorizer name.
*/ inline AuthorizerSummary& WithAuthorizerName(Aws::String&& value) { SetAuthorizerName(std::move(value)); return *this;} /** *The authorizer name.
*/ inline AuthorizerSummary& WithAuthorizerName(const char* value) { SetAuthorizerName(value); return *this;} /** *The authorizer ARN.
*/ inline const Aws::String& GetAuthorizerArn() const{ return m_authorizerArn; } /** *The authorizer ARN.
*/ inline bool AuthorizerArnHasBeenSet() const { return m_authorizerArnHasBeenSet; } /** *The authorizer ARN.
*/ inline void SetAuthorizerArn(const Aws::String& value) { m_authorizerArnHasBeenSet = true; m_authorizerArn = value; } /** *The authorizer ARN.
*/ inline void SetAuthorizerArn(Aws::String&& value) { m_authorizerArnHasBeenSet = true; m_authorizerArn = std::move(value); } /** *The authorizer ARN.
*/ inline void SetAuthorizerArn(const char* value) { m_authorizerArnHasBeenSet = true; m_authorizerArn.assign(value); } /** *The authorizer ARN.
*/ inline AuthorizerSummary& WithAuthorizerArn(const Aws::String& value) { SetAuthorizerArn(value); return *this;} /** *The authorizer ARN.
*/ inline AuthorizerSummary& WithAuthorizerArn(Aws::String&& value) { SetAuthorizerArn(std::move(value)); return *this;} /** *The authorizer ARN.
*/ inline AuthorizerSummary& WithAuthorizerArn(const char* value) { SetAuthorizerArn(value); return *this;} private: Aws::String m_authorizerName; bool m_authorizerNameHasBeenSet = false; Aws::String m_authorizerArn; bool m_authorizerArnHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws