Struct aws_sdk_robomaker::operation::list_robot_applications::builders::ListRobotApplicationsOutputBuilder
source · #[non_exhaustive]pub struct ListRobotApplicationsOutputBuilder { /* private fields */ }Expand description
A builder for ListRobotApplicationsOutput.
Implementations§
source§impl ListRobotApplicationsOutputBuilder
impl ListRobotApplicationsOutputBuilder
sourcepub fn robot_application_summaries(self, input: RobotApplicationSummary) -> Self
pub fn robot_application_summaries(self, input: RobotApplicationSummary) -> Self
Appends an item to robot_application_summaries.
To override the contents of this collection use set_robot_application_summaries.
A list of robot application summaries that meet the criteria of the request.
sourcepub fn set_robot_application_summaries(
self,
input: Option<Vec<RobotApplicationSummary>>,
) -> Self
pub fn set_robot_application_summaries( self, input: Option<Vec<RobotApplicationSummary>>, ) -> Self
A list of robot application summaries that meet the criteria of the request.
sourcepub fn get_robot_application_summaries(
&self,
) -> &Option<Vec<RobotApplicationSummary>>
pub fn get_robot_application_summaries( &self, ) -> &Option<Vec<RobotApplicationSummary>>
A list of robot application summaries that meet the criteria of the request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the previous paginated request did not return all of the remaining results, the response object's nextToken parameter value is set to a token. To retrieve the next set of results, call ListRobotApplications again and assign that token to the request object's nextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the previous paginated request did not return all of the remaining results, the response object's nextToken parameter value is set to a token. To retrieve the next set of results, call ListRobotApplications again and assign that token to the request object's nextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the previous paginated request did not return all of the remaining results, the response object's nextToken parameter value is set to a token. To retrieve the next set of results, call ListRobotApplications again and assign that token to the request object's nextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
sourcepub fn build(self) -> ListRobotApplicationsOutput
pub fn build(self) -> ListRobotApplicationsOutput
Consumes the builder and constructs a ListRobotApplicationsOutput.
Trait Implementations§
source§impl Clone for ListRobotApplicationsOutputBuilder
impl Clone for ListRobotApplicationsOutputBuilder
source§fn clone(&self) -> ListRobotApplicationsOutputBuilder
fn clone(&self) -> ListRobotApplicationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListRobotApplicationsOutputBuilder
impl Default for ListRobotApplicationsOutputBuilder
source§fn default() -> ListRobotApplicationsOutputBuilder
fn default() -> ListRobotApplicationsOutputBuilder
source§impl PartialEq for ListRobotApplicationsOutputBuilder
impl PartialEq for ListRobotApplicationsOutputBuilder
source§fn eq(&self, other: &ListRobotApplicationsOutputBuilder) -> bool
fn eq(&self, other: &ListRobotApplicationsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListRobotApplicationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListRobotApplicationsOutputBuilder
impl RefUnwindSafe for ListRobotApplicationsOutputBuilder
impl Send for ListRobotApplicationsOutputBuilder
impl Sync for ListRobotApplicationsOutputBuilder
impl Unpin for ListRobotApplicationsOutputBuilder
impl UnwindSafe for ListRobotApplicationsOutputBuilder
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
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>
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>
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