pub struct Builder { /* private fields */ }
Expand description
Builder for Endpoint
Implementations§
Source§impl Builder
impl Builder
Sourcepub fn url(self, url: impl Into<Cow<'static, str>>) -> Self
pub fn url(self, url: impl Into<Cow<'static, str>>) -> Self
Set the URL of the Endpoint
§Examples
use aws_smithy_types::endpoint::Endpoint;
let endpoint = Endpoint::builder().url("https://www.example.com").build();
Sourcepub fn header(
self,
name: impl Into<Cow<'static, str>>,
value: impl Into<Cow<'static, str>>,
) -> Self
pub fn header( self, name: impl Into<Cow<'static, str>>, value: impl Into<Cow<'static, str>>, ) -> Self
Adds a header to the endpoint
If there is already a header for this key, this header will be appended to that key
§Examples
use aws_smithy_types::endpoint::Endpoint;
let endpoint = Endpoint::builder().url("https://www.example.com").header("x-my-header", "hello").build();
Sourcepub fn property(
self,
key: impl Into<Cow<'static, str>>,
value: impl Into<Document>,
) -> Self
pub fn property( self, key: impl Into<Cow<'static, str>>, value: impl Into<Document>, ) -> Self
Adds a property to the endpoint
If there is already a property for this key, the existing property will be overwritten
§Examples
use aws_smithy_types::endpoint::Endpoint;
let endpoint = Endpoint::builder()
.url("https://www.example.com")
.property("x-my-header", true)
.build();
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Builder
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more