#[non_exhaustive]pub struct ListServicesOutputBuilder { /* private fields */ }Expand description
A builder for ListServicesOutput.
Implementations§
source§impl ListServicesOutputBuilder
impl ListServicesOutputBuilder
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 service in the array of services, after the current requested list of services.
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 service in the array of services, after the current requested list of services.
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 service in the array of services, after the current requested list of services.
sourcepub fn services(self, input: ServiceSummary) -> Self
pub fn services(self, input: ServiceSummary) -> Self
Appends an item to services.
To override the contents of this collection use set_services.
An array of services with summaries of detail data.
sourcepub fn set_services(self, input: Option<Vec<ServiceSummary>>) -> Self
pub fn set_services(self, input: Option<Vec<ServiceSummary>>) -> Self
An array of services with summaries of detail data.
sourcepub fn get_services(&self) -> &Option<Vec<ServiceSummary>>
pub fn get_services(&self) -> &Option<Vec<ServiceSummary>>
An array of services with summaries of detail data.
sourcepub fn build(self) -> Result<ListServicesOutput, BuildError>
pub fn build(self) -> Result<ListServicesOutput, BuildError>
Consumes the builder and constructs a ListServicesOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListServicesOutputBuilder
impl Clone for ListServicesOutputBuilder
source§fn clone(&self) -> ListServicesOutputBuilder
fn clone(&self) -> ListServicesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListServicesOutputBuilder
impl Debug for ListServicesOutputBuilder
source§impl Default for ListServicesOutputBuilder
impl Default for ListServicesOutputBuilder
source§fn default() -> ListServicesOutputBuilder
fn default() -> ListServicesOutputBuilder
source§impl PartialEq for ListServicesOutputBuilder
impl PartialEq for ListServicesOutputBuilder
source§fn eq(&self, other: &ListServicesOutputBuilder) -> bool
fn eq(&self, other: &ListServicesOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.