Struct aws_sdk_apigatewayv2::operation::get_integration_response::GetIntegrationResponseInput
source · #[non_exhaustive]pub struct GetIntegrationResponseInput {
pub api_id: Option<String>,
pub integration_id: Option<String>,
pub integration_response_id: Option<String>,
}
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.api_id: Option<String>
The API identifier.
integration_id: Option<String>
The integration ID.
integration_response_id: Option<String>
The integration response ID.
Implementations§
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<GetIntegrationResponseInput> for GetIntegrationResponseInput
impl PartialEq<GetIntegrationResponseInput> 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