Uses of Class
software.amazon.awscdk.services.apigatewayv2.MappingValue
Packages that use MappingValue
-
Uses of MappingValue in software.amazon.awscdk.services.apigatewayv2
Fields in software.amazon.awscdk.services.apigatewayv2 declared as MappingValueModifier and TypeFieldDescriptionstatic final MappingValueMappingValue.NONECreates an empty mapping value.Methods in software.amazon.awscdk.services.apigatewayv2 that return MappingValueModifier and TypeMethodDescriptionstatic MappingValueMappingValue.contextVariable(String variableName) Creates a context variable mapping value.static MappingValueCreates a custom mapping value.static MappingValueMappingValue.requestBody(String name) Creates a request body mapping value.static MappingValueMappingValue.requestHeader(String name) Creates a header mapping value.static MappingValueMappingValue.requestPath()Creates a request path mapping value.static MappingValueMappingValue.requestPathParam(String name) Creates a request path parameter mapping value.static MappingValueMappingValue.requestQueryString(String name) Creates a query string mapping value.static MappingValueMappingValue.stageVariable(String variableName) Creates a stage variable mapping value.Methods in software.amazon.awscdk.services.apigatewayv2 with parameters of type MappingValueModifier and TypeMethodDescriptionParameterMapping.appendHeader(String name, MappingValue value) Creates a mapping to append a header.ParameterMapping.appendQueryString(String name, MappingValue value) Creates a mapping to append a query string.ParameterMapping.overwriteHeader(String name, MappingValue value) Creates a mapping to overwrite a header.ParameterMapping.overwritePath(MappingValue value) Creates a mapping to overwrite a path.ParameterMapping.overwriteQueryString(String name, MappingValue value) Creates a mapping to overwrite a querystring.Method parameters in software.amazon.awscdk.services.apigatewayv2 with type arguments of type MappingValueModifier and TypeMethodDescriptionstatic ParameterMappingParameterMapping.fromObject(Map<String, ? extends MappingValue> obj) Creates a mapping from an object.