1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/route53resolver/Route53Resolver_EXPORTS.h>
8 #include <aws/route53resolver/model/ResolverQueryLogConfigAssociation.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace Route53Resolver
24 {
25 namespace Model
26 {
27   class AWS_ROUTE53RESOLVER_API GetResolverQueryLogConfigAssociationResult
28   {
29   public:
30     GetResolverQueryLogConfigAssociationResult();
31     GetResolverQueryLogConfigAssociationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     GetResolverQueryLogConfigAssociationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35     /**
36      * <p>Information about the Resolver query logging configuration association that
37      * you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
38      */
GetResolverQueryLogConfigAssociation()39     inline const ResolverQueryLogConfigAssociation& GetResolverQueryLogConfigAssociation() const{ return m_resolverQueryLogConfigAssociation; }
40 
41     /**
42      * <p>Information about the Resolver query logging configuration association that
43      * you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
44      */
SetResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation & value)45     inline void SetResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation& value) { m_resolverQueryLogConfigAssociation = value; }
46 
47     /**
48      * <p>Information about the Resolver query logging configuration association that
49      * you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
50      */
SetResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation && value)51     inline void SetResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation&& value) { m_resolverQueryLogConfigAssociation = std::move(value); }
52 
53     /**
54      * <p>Information about the Resolver query logging configuration association that
55      * you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
56      */
WithResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation & value)57     inline GetResolverQueryLogConfigAssociationResult& WithResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation& value) { SetResolverQueryLogConfigAssociation(value); return *this;}
58 
59     /**
60      * <p>Information about the Resolver query logging configuration association that
61      * you specified in a <code>GetQueryLogConfigAssociation</code> request.</p>
62      */
WithResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation && value)63     inline GetResolverQueryLogConfigAssociationResult& WithResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation&& value) { SetResolverQueryLogConfigAssociation(std::move(value)); return *this;}
64 
65   private:
66 
67     ResolverQueryLogConfigAssociation m_resolverQueryLogConfigAssociation;
68   };
69 
70 } // namespace Model
71 } // namespace Route53Resolver
72 } // namespace Aws
73