Struct aws_sdk_eventbridge::types::HttpParameters
source · #[non_exhaustive]pub struct HttpParameters { /* private fields */ }
Expand description
These are custom parameter to be used when the target is an API Gateway APIs or EventBridge ApiDestinations. In the latter case, these are merged with any InvocationParameters specified on the Connection, with any values from the Connection taking precedence.
Implementations§
source§impl HttpParameters
impl HttpParameters
sourcepub fn path_parameter_values(&self) -> Option<&[String]>
pub fn path_parameter_values(&self) -> Option<&[String]>
The path parameter values to be used to populate API Gateway API or EventBridge ApiDestination path wildcards ("*").
source§impl HttpParameters
impl HttpParameters
sourcepub fn builder() -> HttpParametersBuilder
pub fn builder() -> HttpParametersBuilder
Creates a new builder-style object to manufacture HttpParameters
.
Trait Implementations§
source§impl Clone for HttpParameters
impl Clone for HttpParameters
source§fn clone(&self) -> HttpParameters
fn clone(&self) -> HttpParameters
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 HttpParameters
impl Debug for HttpParameters
source§impl PartialEq<HttpParameters> for HttpParameters
impl PartialEq<HttpParameters> for HttpParameters
source§fn eq(&self, other: &HttpParameters) -> bool
fn eq(&self, other: &HttpParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HttpParameters
Auto Trait Implementations§
impl RefUnwindSafe for HttpParameters
impl Send for HttpParameters
impl Sync for HttpParameters
impl Unpin for HttpParameters
impl UnwindSafe for HttpParameters
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