Struct aws_sdk_rekognition::operation::describe_projects::builders::DescribeProjectsOutputBuilder
source · #[non_exhaustive]pub struct DescribeProjectsOutputBuilder { /* private fields */ }Expand description
A builder for DescribeProjectsOutput.
Implementations§
source§impl DescribeProjectsOutputBuilder
impl DescribeProjectsOutputBuilder
sourcepub fn project_descriptions(self, input: ProjectDescription) -> Self
pub fn project_descriptions(self, input: ProjectDescription) -> Self
Appends an item to project_descriptions.
To override the contents of this collection use set_project_descriptions.
A list of project descriptions. The list is sorted by the date and time the projects are created.
sourcepub fn set_project_descriptions(
self,
input: Option<Vec<ProjectDescription>>,
) -> Self
pub fn set_project_descriptions( self, input: Option<Vec<ProjectDescription>>, ) -> Self
A list of project descriptions. The list is sorted by the date and time the projects are created.
sourcepub fn get_project_descriptions(&self) -> &Option<Vec<ProjectDescription>>
pub fn get_project_descriptions(&self) -> &Option<Vec<ProjectDescription>>
A list of project descriptions. The list is sorted by the date and time the projects are created.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
sourcepub fn build(self) -> DescribeProjectsOutput
pub fn build(self) -> DescribeProjectsOutput
Consumes the builder and constructs a DescribeProjectsOutput.
Trait Implementations§
source§impl Clone for DescribeProjectsOutputBuilder
impl Clone for DescribeProjectsOutputBuilder
source§fn clone(&self) -> DescribeProjectsOutputBuilder
fn clone(&self) -> DescribeProjectsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeProjectsOutputBuilder
impl Default for DescribeProjectsOutputBuilder
source§fn default() -> DescribeProjectsOutputBuilder
fn default() -> DescribeProjectsOutputBuilder
source§impl PartialEq for DescribeProjectsOutputBuilder
impl PartialEq for DescribeProjectsOutputBuilder
source§fn eq(&self, other: &DescribeProjectsOutputBuilder) -> bool
fn eq(&self, other: &DescribeProjectsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeProjectsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeProjectsOutputBuilder
impl RefUnwindSafe for DescribeProjectsOutputBuilder
impl Send for DescribeProjectsOutputBuilder
impl Sync for DescribeProjectsOutputBuilder
impl Unpin for DescribeProjectsOutputBuilder
impl UnwindSafe for DescribeProjectsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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