Struct rusoto_apigateway::TestInvokeMethodRequest[][src]

pub struct TestInvokeMethodRequest {
    pub body: Option<String>,
    pub client_certificate_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,
    pub http_method: String,
    pub path_with_query_string: Option<String>,
    pub resource_id: String,
    pub rest_api_id: String,
    pub stage_variables: Option<HashMap<String, String>>,
}

Make a request to simulate the execution of a Method.

Fields

The simulated request body of an incoming invocation request.

A ClientCertificate identifier to use in the test invocation. API Gateway will use the certificate when making the HTTPS request to the defined back-end endpoint.

A key-value map of headers to simulate an incoming invocation request.

[Required] Specifies a test invoke method request's HTTP method.

The URI path, including query string, of the simulated invocation request. Use this to specify path parameters and query string parameters.

[Required] Specifies a test invoke method request's resource ID.

[Required] The string identifier of the associated RestApi.

A key-value map of stage variables to simulate an invocation on a deployed Stage.

Trait Implementations

impl Default for TestInvokeMethodRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for TestInvokeMethodRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for TestInvokeMethodRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TestInvokeMethodRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations