#[non_exhaustive]pub struct UpdateGatewayResponseOutput {
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 UpdateGatewayResponseOutput
impl UpdateGatewayResponseOutput
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 UpdateGatewayResponseOutput
impl UpdateGatewayResponseOutput
sourcepub fn builder() -> UpdateGatewayResponseOutputBuilder
pub fn builder() -> UpdateGatewayResponseOutputBuilder
Creates a new builder-style object to manufacture UpdateGatewayResponseOutput
.
Trait Implementations§
source§impl Clone for UpdateGatewayResponseOutput
impl Clone for UpdateGatewayResponseOutput
source§fn clone(&self) -> UpdateGatewayResponseOutput
fn clone(&self) -> UpdateGatewayResponseOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateGatewayResponseOutput
impl Debug for UpdateGatewayResponseOutput
source§impl PartialEq<UpdateGatewayResponseOutput> for UpdateGatewayResponseOutput
impl PartialEq<UpdateGatewayResponseOutput> for UpdateGatewayResponseOutput
source§fn eq(&self, other: &UpdateGatewayResponseOutput) -> bool
fn eq(&self, other: &UpdateGatewayResponseOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateGatewayResponseOutput
impl RequestId for UpdateGatewayResponseOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.