Struct aws_sdk_devicefarm::operation::list_device_pools::builders::ListDevicePoolsOutputBuilder
source · #[non_exhaustive]pub struct ListDevicePoolsOutputBuilder { /* private fields */ }Expand description
A builder for ListDevicePoolsOutput.
Implementations§
source§impl ListDevicePoolsOutputBuilder
impl ListDevicePoolsOutputBuilder
sourcepub fn device_pools(self, input: DevicePool) -> Self
pub fn device_pools(self, input: DevicePool) -> Self
Appends an item to device_pools.
To override the contents of this collection use set_device_pools.
Information about the device pools.
sourcepub fn set_device_pools(self, input: Option<Vec<DevicePool>>) -> Self
pub fn set_device_pools(self, input: Option<Vec<DevicePool>>) -> Self
Information about the device pools.
sourcepub fn get_device_pools(&self) -> &Option<Vec<DevicePool>>
pub fn get_device_pools(&self) -> &Option<Vec<DevicePool>>
Information about the device pools.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
sourcepub fn build(self) -> ListDevicePoolsOutput
pub fn build(self) -> ListDevicePoolsOutput
Consumes the builder and constructs a ListDevicePoolsOutput.
Trait Implementations§
source§impl Clone for ListDevicePoolsOutputBuilder
impl Clone for ListDevicePoolsOutputBuilder
source§fn clone(&self) -> ListDevicePoolsOutputBuilder
fn clone(&self) -> ListDevicePoolsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDevicePoolsOutputBuilder
impl Debug for ListDevicePoolsOutputBuilder
source§impl Default for ListDevicePoolsOutputBuilder
impl Default for ListDevicePoolsOutputBuilder
source§fn default() -> ListDevicePoolsOutputBuilder
fn default() -> ListDevicePoolsOutputBuilder
source§impl PartialEq for ListDevicePoolsOutputBuilder
impl PartialEq for ListDevicePoolsOutputBuilder
source§fn eq(&self, other: &ListDevicePoolsOutputBuilder) -> bool
fn eq(&self, other: &ListDevicePoolsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListDevicePoolsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDevicePoolsOutputBuilder
impl RefUnwindSafe for ListDevicePoolsOutputBuilder
impl Send for ListDevicePoolsOutputBuilder
impl Sync for ListDevicePoolsOutputBuilder
impl Unpin for ListDevicePoolsOutputBuilder
impl UnwindSafe for ListDevicePoolsOutputBuilder
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> 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)
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>
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