#[non_exhaustive]pub struct ListComponentsOutputBuilder { /* private fields */ }
Expand description
A builder for ListComponentsOutput
.
Implementations§
source§impl ListComponentsOutputBuilder
impl ListComponentsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates the location of the next component in the array of components, after the current requested list of components.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that indicates the location of the next component in the array of components, after the current requested list of components.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates the location of the next component in the array of components, after the current requested list of components.
sourcepub fn components(self, input: ComponentSummary) -> Self
pub fn components(self, input: ComponentSummary) -> Self
Appends an item to components
.
To override the contents of this collection use set_components
.
An array of components with summary data.
sourcepub fn set_components(self, input: Option<Vec<ComponentSummary>>) -> Self
pub fn set_components(self, input: Option<Vec<ComponentSummary>>) -> Self
An array of components with summary data.
sourcepub fn get_components(&self) -> &Option<Vec<ComponentSummary>>
pub fn get_components(&self) -> &Option<Vec<ComponentSummary>>
An array of components with summary data.
sourcepub fn build(self) -> Result<ListComponentsOutput, BuildError>
pub fn build(self) -> Result<ListComponentsOutput, BuildError>
Consumes the builder and constructs a ListComponentsOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListComponentsOutputBuilder
impl Clone for ListComponentsOutputBuilder
source§fn clone(&self) -> ListComponentsOutputBuilder
fn clone(&self) -> ListComponentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListComponentsOutputBuilder
impl Debug for ListComponentsOutputBuilder
source§impl Default for ListComponentsOutputBuilder
impl Default for ListComponentsOutputBuilder
source§fn default() -> ListComponentsOutputBuilder
fn default() -> ListComponentsOutputBuilder
source§impl PartialEq for ListComponentsOutputBuilder
impl PartialEq for ListComponentsOutputBuilder
source§fn eq(&self, other: &ListComponentsOutputBuilder) -> bool
fn eq(&self, other: &ListComponentsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.