Class: APIGatewayDSL::Parameter::Path
- Inherits:
-
Simple
- Object
- APIGatewayDSL::Parameter
- Simple
- APIGatewayDSL::Parameter::Path
- Defined in:
- lib/api_gateway_dsl/parameter/path.rb
Instance Method Summary collapse
-
#initialize(name, **options) ⇒ Path
constructor
A new instance of Path.
Methods inherited from Simple
Methods inherited from APIGatewayDSL::Parameter
Constructor Details
#initialize(name, **options) ⇒ Path
Returns a new instance of Path.
5 6 7 8 9 10 |
# File 'lib/api_gateway_dsl/parameter/path.rb', line 5 def initialize(name, **) super @in = 'path' @required = true end |