/**
* 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
An object that represents the data to match from the request.
*/ inline const Aws::VectorAn object that represents the data to match from the request.
*/ inline bool MetadataHasBeenSet() const { return m_metadataHasBeenSet; } /** *An object that represents the data to match from the request.
*/ inline void SetMetadata(const Aws::VectorAn object that represents the data to match from the request.
*/ inline void SetMetadata(Aws::VectorAn object that represents the data to match from the request.
*/ inline GrpcRouteMatch& WithMetadata(const Aws::VectorAn object that represents the data to match from the request.
*/ inline GrpcRouteMatch& WithMetadata(Aws::VectorAn object that represents the data to match from the request.
*/ inline GrpcRouteMatch& AddMetadata(const GrpcRouteMetadata& value) { m_metadataHasBeenSet = true; m_metadata.push_back(value); return *this; } /** *An object that represents the data to match from the request.
*/ inline GrpcRouteMatch& AddMetadata(GrpcRouteMetadata&& value) { m_metadataHasBeenSet = true; m_metadata.push_back(std::move(value)); return *this; } /** *The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The method name to match from the request. If you specify a name, you must
* also specify a serviceName
.
The port number to match on.
*/ inline int GetPort() const{ return m_port; } /** *The port number to match on.
*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *The port number to match on.
*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *The port number to match on.
*/ inline GrpcRouteMatch& WithPort(int value) { SetPort(value); return *this;} /** *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 GrpcRouteMatch& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;} /** *The fully qualified domain name for the service to match from the * request.
*/ inline GrpcRouteMatch& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;} /** *The fully qualified domain name for the service to match from the * request.
*/ inline GrpcRouteMatch& WithServiceName(const char* value) { SetServiceName(value); return *this;} private: Aws::Vector