/** * 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 Route53Resolver { namespace Model { class DisassociateResolverQueryLogConfigResult { public: AWS_ROUTE53RESOLVER_API DisassociateResolverQueryLogConfigResult(); AWS_ROUTE53RESOLVER_API DisassociateResolverQueryLogConfigResult(const Aws::AmazonWebServiceResult& result); AWS_ROUTE53RESOLVER_API DisassociateResolverQueryLogConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A complex type that contains settings for the association that you deleted * between an Amazon VPC and a query logging configuration.

*/ inline const ResolverQueryLogConfigAssociation& GetResolverQueryLogConfigAssociation() const{ return m_resolverQueryLogConfigAssociation; } /** *

A complex type that contains settings for the association that you deleted * between an Amazon VPC and a query logging configuration.

*/ inline void SetResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation& value) { m_resolverQueryLogConfigAssociation = value; } /** *

A complex type that contains settings for the association that you deleted * between an Amazon VPC and a query logging configuration.

*/ inline void SetResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation&& value) { m_resolverQueryLogConfigAssociation = std::move(value); } /** *

A complex type that contains settings for the association that you deleted * between an Amazon VPC and a query logging configuration.

*/ inline DisassociateResolverQueryLogConfigResult& WithResolverQueryLogConfigAssociation(const ResolverQueryLogConfigAssociation& value) { SetResolverQueryLogConfigAssociation(value); return *this;} /** *

A complex type that contains settings for the association that you deleted * between an Amazon VPC and a query logging configuration.

*/ inline DisassociateResolverQueryLogConfigResult& WithResolverQueryLogConfigAssociation(ResolverQueryLogConfigAssociation&& value) { SetResolverQueryLogConfigAssociation(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 DisassociateResolverQueryLogConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DisassociateResolverQueryLogConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DisassociateResolverQueryLogConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ResolverQueryLogConfigAssociation m_resolverQueryLogConfigAssociation; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws