#[non_exhaustive]pub struct UpdateModelInputBuilder { /* private fields */ }
Expand description
A builder for UpdateModelInput
.
Implementations§
source§impl UpdateModelInputBuilder
impl UpdateModelInputBuilder
sourcepub fn rest_api_id(self, input: impl Into<String>) -> Self
pub fn rest_api_id(self, input: impl Into<String>) -> Self
The string identifier of the associated RestApi.
sourcepub fn set_rest_api_id(self, input: Option<String>) -> Self
pub fn set_rest_api_id(self, input: Option<String>) -> Self
The string identifier of the associated RestApi.
sourcepub fn get_rest_api_id(&self) -> &Option<String>
pub fn get_rest_api_id(&self) -> &Option<String>
The string identifier of the associated RestApi.
sourcepub fn model_name(self, input: impl Into<String>) -> Self
pub fn model_name(self, input: impl Into<String>) -> Self
The name of the model to update.
sourcepub fn set_model_name(self, input: Option<String>) -> Self
pub fn set_model_name(self, input: Option<String>) -> Self
The name of the model to update.
sourcepub fn get_model_name(&self) -> &Option<String>
pub fn get_model_name(&self) -> &Option<String>
The name of the model to update.
sourcepub fn patch_operations(self, input: PatchOperation) -> Self
pub fn patch_operations(self, input: PatchOperation) -> Self
Appends an item to patch_operations
.
To override the contents of this collection use set_patch_operations
.
For more information about supported patch operations, see Patch Operations.
sourcepub fn set_patch_operations(self, input: Option<Vec<PatchOperation>>) -> Self
pub fn set_patch_operations(self, input: Option<Vec<PatchOperation>>) -> Self
For more information about supported patch operations, see Patch Operations.
sourcepub fn get_patch_operations(&self) -> &Option<Vec<PatchOperation>>
pub fn get_patch_operations(&self) -> &Option<Vec<PatchOperation>>
For more information about supported patch operations, see Patch Operations.
sourcepub fn build(self) -> Result<UpdateModelInput, BuildError>
pub fn build(self) -> Result<UpdateModelInput, BuildError>
Consumes the builder and constructs a UpdateModelInput
.
source§impl UpdateModelInputBuilder
impl UpdateModelInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateModelOutput, SdkError<UpdateModelError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateModelOutput, SdkError<UpdateModelError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateModelInputBuilder
impl Clone for UpdateModelInputBuilder
source§fn clone(&self) -> UpdateModelInputBuilder
fn clone(&self) -> UpdateModelInputBuilder
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 UpdateModelInputBuilder
impl Debug for UpdateModelInputBuilder
source§impl Default for UpdateModelInputBuilder
impl Default for UpdateModelInputBuilder
source§fn default() -> UpdateModelInputBuilder
fn default() -> UpdateModelInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateModelInputBuilder> for UpdateModelInputBuilder
impl PartialEq<UpdateModelInputBuilder> for UpdateModelInputBuilder
source§fn eq(&self, other: &UpdateModelInputBuilder) -> bool
fn eq(&self, other: &UpdateModelInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateModelInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateModelInputBuilder
impl Send for UpdateModelInputBuilder
impl Sync for UpdateModelInputBuilder
impl Unpin for UpdateModelInputBuilder
impl UnwindSafe for UpdateModelInputBuilder
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