#[non_exhaustive]pub struct GetGatewayResponseOutput {
pub response_type: Option<GatewayResponseType>,
pub status_code: Option<String>,
pub response_parameters: Option<HashMap<String, String>>,
pub response_templates: Option<HashMap<String, String>>,
pub default_response: bool,
/* private fields */
}
Expand description
A gateway response of a given response type and status code, with optional response parameters and mapping templates.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.response_type: Option<GatewayResponseType>
The response type of the associated GatewayResponse.
status_code: Option<String>
The HTTP status code for this GatewayResponse.
response_parameters: Option<HashMap<String, String>>
Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.
response_templates: Option<HashMap<String, String>>
Response templates of the GatewayResponse as a string-to-string map of key-value pairs.
default_response: bool
A Boolean flag to indicate whether this GatewayResponse is the default gateway response (true
) or not (false
). A default gateway response is one generated by API Gateway without any customization by an API developer.
Implementations§
source§impl GetGatewayResponseOutput
impl GetGatewayResponseOutput
sourcepub fn response_type(&self) -> Option<&GatewayResponseType>
pub fn response_type(&self) -> Option<&GatewayResponseType>
The response type of the associated GatewayResponse.
sourcepub fn status_code(&self) -> Option<&str>
pub fn status_code(&self) -> Option<&str>
The HTTP status code for this GatewayResponse.
sourcepub fn response_parameters(&self) -> Option<&HashMap<String, String>>
pub fn response_parameters(&self) -> Option<&HashMap<String, String>>
Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.
sourcepub fn response_templates(&self) -> Option<&HashMap<String, String>>
pub fn response_templates(&self) -> Option<&HashMap<String, String>>
Response templates of the GatewayResponse as a string-to-string map of key-value pairs.
sourcepub fn default_response(&self) -> bool
pub fn default_response(&self) -> bool
A Boolean flag to indicate whether this GatewayResponse is the default gateway response (true
) or not (false
). A default gateway response is one generated by API Gateway without any customization by an API developer.
source§impl GetGatewayResponseOutput
impl GetGatewayResponseOutput
sourcepub fn builder() -> GetGatewayResponseOutputBuilder
pub fn builder() -> GetGatewayResponseOutputBuilder
Creates a new builder-style object to manufacture GetGatewayResponseOutput
.
Trait Implementations§
source§impl Clone for GetGatewayResponseOutput
impl Clone for GetGatewayResponseOutput
source§fn clone(&self) -> GetGatewayResponseOutput
fn clone(&self) -> GetGatewayResponseOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetGatewayResponseOutput
impl Debug for GetGatewayResponseOutput
source§impl PartialEq<GetGatewayResponseOutput> for GetGatewayResponseOutput
impl PartialEq<GetGatewayResponseOutput> for GetGatewayResponseOutput
source§fn eq(&self, other: &GetGatewayResponseOutput) -> bool
fn eq(&self, other: &GetGatewayResponseOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetGatewayResponseOutput
impl RequestId for GetGatewayResponseOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.