/** * 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 DeleteResolverEndpointRequest : public Route53ResolverRequest { public: AWS_ROUTE53RESOLVER_API DeleteResolverEndpointRequest(); // 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 "DeleteResolverEndpoint"; } AWS_ROUTE53RESOLVER_API Aws::String SerializePayload() const override; AWS_ROUTE53RESOLVER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline const Aws::String& GetResolverEndpointId() const{ return m_resolverEndpointId; } /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline bool ResolverEndpointIdHasBeenSet() const { return m_resolverEndpointIdHasBeenSet; } /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline void SetResolverEndpointId(const Aws::String& value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId = value; } /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline void SetResolverEndpointId(Aws::String&& value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId = std::move(value); } /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline void SetResolverEndpointId(const char* value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId.assign(value); } /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline DeleteResolverEndpointRequest& WithResolverEndpointId(const Aws::String& value) { SetResolverEndpointId(value); return *this;} /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline DeleteResolverEndpointRequest& WithResolverEndpointId(Aws::String&& value) { SetResolverEndpointId(std::move(value)); return *this;} /** *

The ID of the Resolver endpoint that you want to delete.

*/ inline DeleteResolverEndpointRequest& WithResolverEndpointId(const char* value) { SetResolverEndpointId(value); return *this;} private: Aws::String m_resolverEndpointId; bool m_resolverEndpointIdHasBeenSet = false; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws