/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoT { namespace Model { class DescribeDefaultAuthorizerResult { public: AWS_IOT_API DescribeDefaultAuthorizerResult(); AWS_IOT_API DescribeDefaultAuthorizerResult(const Aws::AmazonWebServiceResult& result); AWS_IOT_API DescribeDefaultAuthorizerResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The default authorizer's description.

*/ inline const AuthorizerDescription& GetAuthorizerDescription() const{ return m_authorizerDescription; } /** *

The default authorizer's description.

*/ inline void SetAuthorizerDescription(const AuthorizerDescription& value) { m_authorizerDescription = value; } /** *

The default authorizer's description.

*/ inline void SetAuthorizerDescription(AuthorizerDescription&& value) { m_authorizerDescription = std::move(value); } /** *

The default authorizer's description.

*/ inline DescribeDefaultAuthorizerResult& WithAuthorizerDescription(const AuthorizerDescription& value) { SetAuthorizerDescription(value); return *this;} /** *

The default authorizer's description.

*/ inline DescribeDefaultAuthorizerResult& WithAuthorizerDescription(AuthorizerDescription&& value) { SetAuthorizerDescription(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeDefaultAuthorizerResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeDefaultAuthorizerResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeDefaultAuthorizerResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AuthorizerDescription m_authorizerDescription; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws