Struct aws_sdk_pipes::types::PipeEnrichmentHttpParameters
source · #[non_exhaustive]pub struct PipeEnrichmentHttpParameters {
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§
source§impl PipeEnrichmentHttpParameters
impl PipeEnrichmentHttpParameters
sourcepub fn path_parameter_values(&self) -> &[String]
pub fn path_parameter_values(&self) -> &[String]
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .path_parameter_values.is_none()
.
source§impl PipeEnrichmentHttpParameters
impl PipeEnrichmentHttpParameters
sourcepub fn builder() -> PipeEnrichmentHttpParametersBuilder
pub fn builder() -> PipeEnrichmentHttpParametersBuilder
Creates a new builder-style object to manufacture PipeEnrichmentHttpParameters
.
Trait Implementations§
source§impl Clone for PipeEnrichmentHttpParameters
impl Clone for PipeEnrichmentHttpParameters
source§fn clone(&self) -> PipeEnrichmentHttpParameters
fn clone(&self) -> PipeEnrichmentHttpParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipeEnrichmentHttpParameters
impl Debug for PipeEnrichmentHttpParameters
source§impl PartialEq for PipeEnrichmentHttpParameters
impl PartialEq for PipeEnrichmentHttpParameters
source§fn eq(&self, other: &PipeEnrichmentHttpParameters) -> bool
fn eq(&self, other: &PipeEnrichmentHttpParameters) -> bool
self
and other
values to be equal, and is used
by ==
.