Struct aws_sdk_eventbridge::endpoint::Params
source · #[non_exhaustive]pub struct Params { /* private fields */ }Expand description
Configuration parameters for resolving the correct endpoint
Implementations§
source§impl Params
impl Params
sourcepub fn builder() -> ParamsBuilder
pub fn builder() -> ParamsBuilder
Create a builder for Params
sourcepub fn use_dual_stack(&self) -> Option<bool>
pub fn use_dual_stack(&self) -> Option<bool>
When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
sourcepub fn use_fips(&self) -> Option<bool>
pub fn use_fips(&self) -> Option<bool>
When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
Operation parameter for EndpointId
Trait Implementations§
source§impl PartialEq<Params> for Params
impl PartialEq<Params> for Params
source§impl ResolveEndpoint<Params> for DefaultResolver
impl ResolveEndpoint<Params> for DefaultResolver
source§fn resolve_endpoint(&self, params: &Params) -> Result
fn resolve_endpoint(&self, params: &Params) -> Result
Given some endpoint parameters, resolve an endpoint or return an error when resolution is
impossible.
impl StructuralPartialEq for Params
Auto Trait Implementations§
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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