/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents the criteria for determining a request
* match.See Also:
AWS
* API Reference
The fully qualified domain name for the service to match from the * request.
*/ inline const Aws::String& GetServiceName() const{ return m_serviceName; } /** *The fully qualified domain name for the service to match from the * request.
*/ inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; } /** *The fully qualified domain name for the service to match from the * request.
*/ inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; } /** *The fully qualified domain name for the service to match from the * request.
*/ inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); } /** *The fully qualified domain name for the service to match from the * request.
*/ inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); } /** *The fully qualified domain name for the service to match from the * request.
*/ inline GrpcGatewayRouteMatch& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;} /** *The fully qualified domain name for the service to match from the * request.
*/ inline GrpcGatewayRouteMatch& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;} /** *The fully qualified domain name for the service to match from the * request.
*/ inline GrpcGatewayRouteMatch& WithServiceName(const char* value) { SetServiceName(value); return *this;} private: Aws::String m_serviceName; bool m_serviceNameHasBeenSet; }; } // namespace Model } // namespace AppMesh } // namespace Aws