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.

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.

Specifies a test invoke method request's resource ID.

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]

[src]

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

impl Debug for TestInvokeMethodRequest
[src]

[src]

Formats the value using the given formatter.

impl Clone for TestInvokeMethodRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more