Class: Aws::ApiGatewayV2::Types::CreateRouteResponseRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::CreateRouteResponseRequest
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Note:
When making an API call, you may pass CreateRouteResponseRequest data as a hash:
{
api_id: "__string", # required
model_selection_expression: "SelectionExpression",
response_models: {
"__string" => "StringWithLengthBetween1And128",
},
response_parameters: {
"__string" => {
required: false,
},
},
route_id: "__string", # required
route_response_key: "SelectionKey", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
-
#model_selection_expression ⇒ String
An expression used to extract information at runtime.
-
#response_models ⇒ Hash<String,String>
The route models.
-
#response_parameters ⇒ Hash<String,Types::ParameterConstraints>
The route parameters.
-
#route_id ⇒ String
-
#route_response_key ⇒ String
After evaluating a selection expression, the result is compared against one or more selection keys to find a matching key.
Instance Attribute Details
#api_id ⇒ String
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |
#model_selection_expression ⇒ String
An expression used to extract information at runtime. See Selection Expressions for more information.
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |
#response_models ⇒ Hash<String,String>
The route models.
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |
#response_parameters ⇒ Hash<String,Types::ParameterConstraints>
The route parameters.
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |
#route_id ⇒ String
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |
#route_response_key ⇒ String
After evaluating a selection expression, the result is compared against one or more selection keys to find a matching key. See Selection Expressions for a list of expressions and each expression's associated selection key type.
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 2610 class CreateRouteResponseRequest < Struct.new( :api_id, :model_selection_expression, :response_models, :response_parameters, :route_id, :route_response_key) SENSITIVE = [] include Aws::Structure end |