/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Route53Resolver { namespace Model { /** */ class GetResolverDnssecConfigRequest : public Route53ResolverRequest { public: AWS_ROUTE53RESOLVER_API GetResolverDnssecConfigRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetResolverDnssecConfig"; } AWS_ROUTE53RESOLVER_API Aws::String SerializePayload() const override; AWS_ROUTE53RESOLVER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline const Aws::String& GetResourceId() const{ return m_resourceId; } /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; } /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; } /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); } /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); } /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline GetResolverDnssecConfigRequest& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;} /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline GetResolverDnssecConfigRequest& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;} /** *

The ID of the virtual private cloud (VPC) for the DNSSEC validation * status.

*/ inline GetResolverDnssecConfigRequest& WithResourceId(const char* value) { SetResourceId(value); return *this;} private: Aws::String m_resourceId; bool m_resourceIdHasBeenSet = false; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws