Struct aws_sdk_eventbridge::model::HttpParameters
source · [−]#[non_exhaustive]pub struct HttpParameters {
pub path_parameter_values: Option<Vec<String>>,
pub header_parameters: Option<HashMap<String, String>>,
pub query_string_parameters: Option<HashMap<String, String>>,
}Expand description
These are custom parameter to be used when the target is an API Gateway REST 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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path_parameter_values: Option<Vec<String>>The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
header_parameters: Option<HashMap<String, String>>The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
query_string_parameters: Option<HashMap<String, String>>The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
Implementations
sourceimpl 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 REST API or EventBridge ApiDestination path wildcards ("*").
sourceimpl HttpParameters
impl HttpParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HttpParameters
Trait Implementations
sourceimpl Clone for HttpParameters
impl Clone for HttpParameters
sourcefn clone(&self) -> HttpParameters
fn clone(&self) -> HttpParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for HttpParameters
impl Debug for HttpParameters
sourceimpl PartialEq<HttpParameters> for HttpParameters
impl PartialEq<HttpParameters> for HttpParameters
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &HttpParameters) -> bool
fn ne(&self, other: &HttpParameters) -> bool
This method tests for !=.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more