Struct aws_sdk_apigatewayv2::types::RouteResponse
source · #[non_exhaustive]pub struct RouteResponse {
pub model_selection_expression: Option<String>,
pub response_models: Option<HashMap<String, String>>,
pub response_parameters: Option<HashMap<String, ParameterConstraints>>,
pub route_response_id: Option<String>,
pub route_response_key: Option<String>,
}
Expand description
Represents a route response.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.model_selection_expression: Option<String>
Represents the model selection expression of a route response. Supported only for WebSocket APIs.
response_models: Option<HashMap<String, String>>
Represents the response models of a route response.
response_parameters: Option<HashMap<String, ParameterConstraints>>
Represents the response parameters of a route response.
route_response_id: Option<String>
Represents the identifier of a route response.
route_response_key: Option<String>
Represents the route response key of a route response.
Implementations§
source§impl RouteResponse
impl RouteResponse
sourcepub fn model_selection_expression(&self) -> Option<&str>
pub fn model_selection_expression(&self) -> Option<&str>
Represents the model selection expression of a route response. Supported only for WebSocket APIs.
sourcepub fn response_models(&self) -> Option<&HashMap<String, String>>
pub fn response_models(&self) -> Option<&HashMap<String, String>>
Represents the response models of a route response.
sourcepub fn response_parameters(
&self
) -> Option<&HashMap<String, ParameterConstraints>>
pub fn response_parameters( &self ) -> Option<&HashMap<String, ParameterConstraints>>
Represents the response parameters of a route response.
sourcepub fn route_response_id(&self) -> Option<&str>
pub fn route_response_id(&self) -> Option<&str>
Represents the identifier of a route response.
sourcepub fn route_response_key(&self) -> Option<&str>
pub fn route_response_key(&self) -> Option<&str>
Represents the route response key of a route response.
source§impl RouteResponse
impl RouteResponse
sourcepub fn builder() -> RouteResponseBuilder
pub fn builder() -> RouteResponseBuilder
Creates a new builder-style object to manufacture RouteResponse
.
Trait Implementations§
source§impl Clone for RouteResponse
impl Clone for RouteResponse
source§fn clone(&self) -> RouteResponse
fn clone(&self) -> RouteResponse
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 Debug for RouteResponse
impl Debug for RouteResponse
source§impl PartialEq for RouteResponse
impl PartialEq for RouteResponse
source§fn eq(&self, other: &RouteResponse) -> bool
fn eq(&self, other: &RouteResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RouteResponse
Auto Trait Implementations§
impl RefUnwindSafe for RouteResponse
impl Send for RouteResponse
impl Sync for RouteResponse
impl Unpin for RouteResponse
impl UnwindSafe for RouteResponse
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.