Struct aws_sdk_apigateway::operation::test_invoke_method::builders::TestInvokeMethodOutputBuilder
source · #[non_exhaustive]pub struct TestInvokeMethodOutputBuilder { /* private fields */ }
Expand description
A builder for TestInvokeMethodOutput
.
Implementations§
source§impl TestInvokeMethodOutputBuilder
impl TestInvokeMethodOutputBuilder
sourcepub fn set_status(self, input: Option<i32>) -> Self
pub fn set_status(self, input: Option<i32>) -> Self
The HTTP status code.
sourcepub fn get_status(&self) -> &Option<i32>
pub fn get_status(&self) -> &Option<i32>
The HTTP status code.
sourcepub fn headers(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn headers(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to headers
.
To override the contents of this collection use set_headers
.
The headers of the HTTP response.
sourcepub fn set_headers(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_headers(self, input: Option<HashMap<String, String>>) -> Self
The headers of the HTTP response.
sourcepub fn get_headers(&self) -> &Option<HashMap<String, String>>
pub fn get_headers(&self) -> &Option<HashMap<String, String>>
The headers of the HTTP response.
sourcepub fn multi_value_headers(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn multi_value_headers(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to multi_value_headers
.
To override the contents of this collection use set_multi_value_headers
.
The headers of the HTTP response as a map from string to list of values.
sourcepub fn set_multi_value_headers(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
pub fn set_multi_value_headers( self, input: Option<HashMap<String, Vec<String>>> ) -> Self
The headers of the HTTP response as a map from string to list of values.
sourcepub fn get_multi_value_headers(&self) -> &Option<HashMap<String, Vec<String>>>
pub fn get_multi_value_headers(&self) -> &Option<HashMap<String, Vec<String>>>
The headers of the HTTP response as a map from string to list of values.
sourcepub fn log(self, input: impl Into<String>) -> Self
pub fn log(self, input: impl Into<String>) -> Self
The API Gateway execution log for the test invoke request.
sourcepub fn set_log(self, input: Option<String>) -> Self
pub fn set_log(self, input: Option<String>) -> Self
The API Gateway execution log for the test invoke request.
sourcepub fn get_log(&self) -> &Option<String>
pub fn get_log(&self) -> &Option<String>
The API Gateway execution log for the test invoke request.
sourcepub fn set_latency(self, input: Option<i64>) -> Self
pub fn set_latency(self, input: Option<i64>) -> Self
The execution latency of the test invoke request.
sourcepub fn get_latency(&self) -> &Option<i64>
pub fn get_latency(&self) -> &Option<i64>
The execution latency of the test invoke request.
sourcepub fn build(self) -> TestInvokeMethodOutput
pub fn build(self) -> TestInvokeMethodOutput
Consumes the builder and constructs a TestInvokeMethodOutput
.
Trait Implementations§
source§impl Clone for TestInvokeMethodOutputBuilder
impl Clone for TestInvokeMethodOutputBuilder
source§fn clone(&self) -> TestInvokeMethodOutputBuilder
fn clone(&self) -> TestInvokeMethodOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TestInvokeMethodOutputBuilder
impl Default for TestInvokeMethodOutputBuilder
source§fn default() -> TestInvokeMethodOutputBuilder
fn default() -> TestInvokeMethodOutputBuilder
source§impl PartialEq<TestInvokeMethodOutputBuilder> for TestInvokeMethodOutputBuilder
impl PartialEq<TestInvokeMethodOutputBuilder> for TestInvokeMethodOutputBuilder
source§fn eq(&self, other: &TestInvokeMethodOutputBuilder) -> bool
fn eq(&self, other: &TestInvokeMethodOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.