#[non_exhaustive]pub struct GetIntegrationResponseInput {
pub rest_api_id: Option<String>,
pub resource_id: Option<String>,
pub http_method: Option<String>,
pub status_code: Option<String>,
}
Expand description
Represents a get integration response request.
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.rest_api_id: Option<String>
The string identifier of the associated RestApi.
resource_id: Option<String>
Specifies a get integration response request's resource identifier.
http_method: Option<String>
Specifies a get integration response request's HTTP method.
status_code: Option<String>
Specifies a get integration response request's status code.
Implementations§
source§impl GetIntegrationResponseInput
impl GetIntegrationResponseInput
sourcepub fn rest_api_id(&self) -> Option<&str>
pub fn rest_api_id(&self) -> Option<&str>
The string identifier of the associated RestApi.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
Specifies a get integration response request's resource identifier.
sourcepub fn http_method(&self) -> Option<&str>
pub fn http_method(&self) -> Option<&str>
Specifies a get integration response request's HTTP method.
sourcepub fn status_code(&self) -> Option<&str>
pub fn status_code(&self) -> Option<&str>
Specifies a get integration response request's status code.
source§impl GetIntegrationResponseInput
impl GetIntegrationResponseInput
sourcepub fn builder() -> GetIntegrationResponseInputBuilder
pub fn builder() -> GetIntegrationResponseInputBuilder
Creates a new builder-style object to manufacture GetIntegrationResponseInput
.
Trait Implementations§
source§impl Clone for GetIntegrationResponseInput
impl Clone for GetIntegrationResponseInput
source§fn clone(&self) -> GetIntegrationResponseInput
fn clone(&self) -> GetIntegrationResponseInput
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 GetIntegrationResponseInput
impl Debug for GetIntegrationResponseInput
source§impl PartialEq for GetIntegrationResponseInput
impl PartialEq for GetIntegrationResponseInput
source§fn eq(&self, other: &GetIntegrationResponseInput) -> bool
fn eq(&self, other: &GetIntegrationResponseInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetIntegrationResponseInput
Auto Trait Implementations§
impl RefUnwindSafe for GetIntegrationResponseInput
impl Send for GetIntegrationResponseInput
impl Sync for GetIntegrationResponseInput
impl Unpin for GetIntegrationResponseInput
impl UnwindSafe for GetIntegrationResponseInput
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.