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 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 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 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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for TestInvokeMethodOutputBuilder
impl Default for TestInvokeMethodOutputBuilder
source§fn default() -> TestInvokeMethodOutputBuilder
fn default() -> TestInvokeMethodOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TestInvokeMethodOutputBuilder> for TestInvokeMethodOutputBuilder
impl PartialEq<TestInvokeMethodOutputBuilder> for TestInvokeMethodOutputBuilder
source§fn eq(&self, other: &TestInvokeMethodOutputBuilder) -> bool
fn eq(&self, other: &TestInvokeMethodOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TestInvokeMethodOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for TestInvokeMethodOutputBuilder
impl Send for TestInvokeMethodOutputBuilder
impl Sync for TestInvokeMethodOutputBuilder
impl Unpin for TestInvokeMethodOutputBuilder
impl UnwindSafe for TestInvokeMethodOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more