/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.apigateway.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* Make a request to simulate the invocation of an Authorizer. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TestInvokeAuthorizerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** ** The string identifier of the associated RestApi. *
*/ private String restApiId; /** ** Specifies a test invoke authorizer request's Authorizer ID. *
*/ private String authorizerId; /** ** A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization * token, or identity source, should be specified. *
*/ private java.util.Map* The headers as a map from string to list of values to simulate an incoming invocation request. This is where the * incoming authorization token, or identity source, may be specified. *
*/ private java.util.Map* The URI path, including query string, of the simulated invocation request. Use this to specify path parameters * and query string parameters. *
*/ private String pathWithQueryString; /** ** The simulated request body of an incoming invocation request. *
*/ private String body; /** ** A key-value map of stage variables to simulate an invocation on a deployed Stage. *
*/ private java.util.Map* A key-value map of additional context variables. *
*/ private java.util.Map* The string identifier of the associated RestApi. *
* * @param restApiId * The string identifier of the associated RestApi. */ public void setRestApiId(String restApiId) { this.restApiId = restApiId; } /** ** The string identifier of the associated RestApi. *
* * @return The string identifier of the associated RestApi. */ public String getRestApiId() { return this.restApiId; } /** ** The string identifier of the associated RestApi. *
* * @param restApiId * The string identifier of the associated RestApi. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withRestApiId(String restApiId) { setRestApiId(restApiId); return this; } /** ** Specifies a test invoke authorizer request's Authorizer ID. *
* * @param authorizerId * Specifies a test invoke authorizer request's Authorizer ID. */ public void setAuthorizerId(String authorizerId) { this.authorizerId = authorizerId; } /** ** Specifies a test invoke authorizer request's Authorizer ID. *
* * @return Specifies a test invoke authorizer request's Authorizer ID. */ public String getAuthorizerId() { return this.authorizerId; } /** ** Specifies a test invoke authorizer request's Authorizer ID. *
* * @param authorizerId * Specifies a test invoke authorizer request's Authorizer ID. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withAuthorizerId(String authorizerId) { setAuthorizerId(authorizerId); return this; } /** ** A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization * token, or identity source, should be specified. *
* * @return A key-value map of headers to simulate an incoming invocation request. This is where the incoming * authorization token, or identity source, should be specified. */ public java.util.Map* A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization * token, or identity source, should be specified. *
* * @param headers * A key-value map of headers to simulate an incoming invocation request. This is where the incoming * authorization token, or identity source, should be specified. */ public void setHeaders(java.util.Map* A key-value map of headers to simulate an incoming invocation request. This is where the incoming authorization * token, or identity source, should be specified. *
* * @param headers * A key-value map of headers to simulate an incoming invocation request. This is where the incoming * authorization token, or identity source, should be specified. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withHeaders(java.util.Map* The headers as a map from string to list of values to simulate an incoming invocation request. This is where the * incoming authorization token, or identity source, may be specified. *
* * @return The headers as a map from string to list of values to simulate an incoming invocation request. This is * where the incoming authorization token, or identity source, may be specified. */ public java.util.Map* The headers as a map from string to list of values to simulate an incoming invocation request. This is where the * incoming authorization token, or identity source, may be specified. *
* * @param multiValueHeaders * The headers as a map from string to list of values to simulate an incoming invocation request. This is * where the incoming authorization token, or identity source, may be specified. */ public void setMultiValueHeaders(java.util.Map* The headers as a map from string to list of values to simulate an incoming invocation request. This is where the * incoming authorization token, or identity source, may be specified. *
* * @param multiValueHeaders * The headers as a map from string to list of values to simulate an incoming invocation request. This is * where the incoming authorization token, or identity source, may be specified. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withMultiValueHeaders(java.util.Map* The URI path, including query string, of the simulated invocation request. Use this to specify path parameters * and query string parameters. *
* * @param pathWithQueryString * The URI path, including query string, of the simulated invocation request. Use this to specify path * parameters and query string parameters. */ public void setPathWithQueryString(String pathWithQueryString) { this.pathWithQueryString = pathWithQueryString; } /** ** The URI path, including query string, of the simulated invocation request. Use this to specify path parameters * and query string parameters. *
* * @return The URI path, including query string, of the simulated invocation request. Use this to specify path * parameters and query string parameters. */ public String getPathWithQueryString() { return this.pathWithQueryString; } /** ** The URI path, including query string, of the simulated invocation request. Use this to specify path parameters * and query string parameters. *
* * @param pathWithQueryString * The URI path, including query string, of the simulated invocation request. Use this to specify path * parameters and query string parameters. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withPathWithQueryString(String pathWithQueryString) { setPathWithQueryString(pathWithQueryString); return this; } /** ** The simulated request body of an incoming invocation request. *
* * @param body * The simulated request body of an incoming invocation request. */ public void setBody(String body) { this.body = body; } /** ** The simulated request body of an incoming invocation request. *
* * @return The simulated request body of an incoming invocation request. */ public String getBody() { return this.body; } /** ** The simulated request body of an incoming invocation request. *
* * @param body * The simulated request body of an incoming invocation request. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withBody(String body) { setBody(body); return this; } /** ** A key-value map of stage variables to simulate an invocation on a deployed Stage. *
* * @return A key-value map of stage variables to simulate an invocation on a deployed Stage. */ public java.util.Map* A key-value map of stage variables to simulate an invocation on a deployed Stage. *
* * @param stageVariables * A key-value map of stage variables to simulate an invocation on a deployed Stage. */ public void setStageVariables(java.util.Map* A key-value map of stage variables to simulate an invocation on a deployed Stage. *
* * @param stageVariables * A key-value map of stage variables to simulate an invocation on a deployed Stage. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withStageVariables(java.util.Map* A key-value map of additional context variables. *
* * @return A key-value map of additional context variables. */ public java.util.Map* A key-value map of additional context variables. *
* * @param additionalContext * A key-value map of additional context variables. */ public void setAdditionalContext(java.util.Map* A key-value map of additional context variables. *
* * @param additionalContext * A key-value map of additional context variables. * @return Returns a reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest withAdditionalContext(java.util.Map