Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data GrpcRouteMatch Source #
An object that represents the criteria for determining a request match.
See: newGrpcRouteMatch
smart constructor.
GrpcRouteMatch' | |
|
Instances
newGrpcRouteMatch :: GrpcRouteMatch Source #
Create a value of GrpcRouteMatch
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:methodName:GrpcRouteMatch'
, grpcRouteMatch_methodName
- The method name to match from the request. If you specify a name, you
must also specify a serviceName
.
$sel:serviceName:GrpcRouteMatch'
, grpcRouteMatch_serviceName
- The fully qualified domain name for the service to match from the
request.
$sel:metadata:GrpcRouteMatch'
, grpcRouteMatch_metadata
- An object that represents the data to match from the request.
grpcRouteMatch_methodName :: Lens' GrpcRouteMatch (Maybe Text) Source #
The method name to match from the request. If you specify a name, you
must also specify a serviceName
.
grpcRouteMatch_serviceName :: Lens' GrpcRouteMatch (Maybe Text) Source #
The fully qualified domain name for the service to match from the request.
grpcRouteMatch_metadata :: Lens' GrpcRouteMatch (Maybe (NonEmpty GrpcRouteMetadata)) Source #
An object that represents the data to match from the request.