Struct aws_sdk_pipes::types::PipeTargetHttpParameters
source · #[non_exhaustive]pub struct PipeTargetHttpParameters {
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.
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 PipeTargetHttpParameters
impl PipeTargetHttpParameters
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 PipeTargetHttpParameters
impl PipeTargetHttpParameters
sourcepub fn builder() -> PipeTargetHttpParametersBuilder
pub fn builder() -> PipeTargetHttpParametersBuilder
Creates a new builder-style object to manufacture PipeTargetHttpParameters
.
Trait Implementations§
source§impl Clone for PipeTargetHttpParameters
impl Clone for PipeTargetHttpParameters
source§fn clone(&self) -> PipeTargetHttpParameters
fn clone(&self) -> PipeTargetHttpParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipeTargetHttpParameters
impl Debug for PipeTargetHttpParameters
source§impl PartialEq for PipeTargetHttpParameters
impl PartialEq for PipeTargetHttpParameters
source§fn eq(&self, other: &PipeTargetHttpParameters) -> bool
fn eq(&self, other: &PipeTargetHttpParameters) -> bool
self
and other
values to be equal, and is used
by ==
.