#[non_exhaustive]pub struct ListHubsOutputBuilder { /* private fields */ }
Expand description
A builder for ListHubsOutput
.
Implementations§
source§impl ListHubsOutputBuilder
impl ListHubsOutputBuilder
sourcepub fn hub_summaries(self, input: HubInfo) -> Self
pub fn hub_summaries(self, input: HubInfo) -> Self
Appends an item to hub_summaries
.
To override the contents of this collection use set_hub_summaries
.
The summaries of the listed hubs.
sourcepub fn set_hub_summaries(self, input: Option<Vec<HubInfo>>) -> Self
pub fn set_hub_summaries(self, input: Option<Vec<HubInfo>>) -> Self
The summaries of the listed hubs.
sourcepub fn get_hub_summaries(&self) -> &Option<Vec<HubInfo>>
pub fn get_hub_summaries(&self) -> &Option<Vec<HubInfo>>
The summaries of the listed hubs.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response is truncated, SageMaker returns this token. To retrieve the next set of hubs, use it in the subsequent request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response is truncated, SageMaker returns this token. To retrieve the next set of hubs, use it in the subsequent request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response is truncated, SageMaker returns this token. To retrieve the next set of hubs, use it in the subsequent request.
sourcepub fn build(self) -> ListHubsOutput
pub fn build(self) -> ListHubsOutput
Consumes the builder and constructs a ListHubsOutput
.
Trait Implementations§
source§impl Clone for ListHubsOutputBuilder
impl Clone for ListHubsOutputBuilder
source§fn clone(&self) -> ListHubsOutputBuilder
fn clone(&self) -> ListHubsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListHubsOutputBuilder
impl Debug for ListHubsOutputBuilder
source§impl Default for ListHubsOutputBuilder
impl Default for ListHubsOutputBuilder
source§fn default() -> ListHubsOutputBuilder
fn default() -> ListHubsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListHubsOutputBuilder
impl PartialEq for ListHubsOutputBuilder
impl StructuralPartialEq for ListHubsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListHubsOutputBuilder
impl RefUnwindSafe for ListHubsOutputBuilder
impl Send for ListHubsOutputBuilder
impl Sync for ListHubsOutputBuilder
impl Unpin for ListHubsOutputBuilder
impl UnwindSafe for ListHubsOutputBuilder
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.