#[non_exhaustive]pub struct UpdateApiDestinationInput { /* private fields */ }
Implementations§
source§impl UpdateApiDestinationInput
impl UpdateApiDestinationInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The name of the API destination to update.
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
The ARN of the connection to use for the API destination.
sourcepub fn invocation_endpoint(&self) -> Option<&str>
pub fn invocation_endpoint(&self) -> Option<&str>
The URL to the endpoint to use for the API destination.
sourcepub fn http_method(&self) -> Option<&ApiDestinationHttpMethod>
pub fn http_method(&self) -> Option<&ApiDestinationHttpMethod>
The method to use for the API destination.
sourcepub fn invocation_rate_limit_per_second(&self) -> Option<i32>
pub fn invocation_rate_limit_per_second(&self) -> Option<i32>
The maximum number of invocations per second to send to the API destination.
source§impl UpdateApiDestinationInput
impl UpdateApiDestinationInput
sourcepub fn builder() -> UpdateApiDestinationInputBuilder
pub fn builder() -> UpdateApiDestinationInputBuilder
Creates a new builder-style object to manufacture UpdateApiDestinationInput
.
source§impl UpdateApiDestinationInput
impl UpdateApiDestinationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApiDestination, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateApiDestination, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateApiDestination
>
Trait Implementations§
source§impl Clone for UpdateApiDestinationInput
impl Clone for UpdateApiDestinationInput
source§fn clone(&self) -> UpdateApiDestinationInput
fn clone(&self) -> UpdateApiDestinationInput
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 UpdateApiDestinationInput
impl Debug for UpdateApiDestinationInput
source§impl PartialEq<UpdateApiDestinationInput> for UpdateApiDestinationInput
impl PartialEq<UpdateApiDestinationInput> for UpdateApiDestinationInput
source§fn eq(&self, other: &UpdateApiDestinationInput) -> bool
fn eq(&self, other: &UpdateApiDestinationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateApiDestinationInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateApiDestinationInput
impl Send for UpdateApiDestinationInput
impl Sync for UpdateApiDestinationInput
impl Unpin for UpdateApiDestinationInput
impl UnwindSafe for UpdateApiDestinationInput
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