Struct aws_sdk_apigateway::operation::get_models::GetModelsInput
source · #[non_exhaustive]pub struct GetModelsInput {
pub rest_api_id: Option<String>,
pub position: Option<String>,
pub limit: Option<i32>,
}
Expand description
Request to list existing Models defined for a RestApi resource.
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.
position: Option<String>
The current pagination position in the paged result set.
limit: Option<i32>
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
Implementations§
source§impl GetModelsInput
impl GetModelsInput
source§impl GetModelsInput
impl GetModelsInput
sourcepub fn builder() -> GetModelsInputBuilder
pub fn builder() -> GetModelsInputBuilder
Creates a new builder-style object to manufacture GetModelsInput
.
Trait Implementations§
source§impl Clone for GetModelsInput
impl Clone for GetModelsInput
source§fn clone(&self) -> GetModelsInput
fn clone(&self) -> GetModelsInput
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 GetModelsInput
impl Debug for GetModelsInput
source§impl PartialEq<GetModelsInput> for GetModelsInput
impl PartialEq<GetModelsInput> for GetModelsInput
source§fn eq(&self, other: &GetModelsInput) -> bool
fn eq(&self, other: &GetModelsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetModelsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetModelsInput
impl Send for GetModelsInput
impl Sync for GetModelsInput
impl Unpin for GetModelsInput
impl UnwindSafe for GetModelsInput
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