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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

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

The ID of the resolver endpoint that you want to update.

*/ inline UpdateResolverEndpointRequest& WithResolverEndpointId(const char* value) { SetResolverEndpointId(value); return *this;} /** *

The name of the resolver endpoint that you want to update.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the resolver endpoint that you want to update.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the resolver endpoint that you want to update.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the resolver endpoint that you want to update.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the resolver endpoint that you want to update.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the resolver endpoint that you want to update.

*/ inline UpdateResolverEndpointRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the resolver endpoint that you want to update.

*/ inline UpdateResolverEndpointRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the resolver endpoint that you want to update.

*/ inline UpdateResolverEndpointRequest& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_resolverEndpointId; bool m_resolverEndpointIdHasBeenSet; Aws::String m_name; bool m_nameHasBeenSet; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws