Struct aws_sdk_codebuild::operation::list_shared_projects::builders::ListSharedProjectsOutputBuilder
source · #[non_exhaustive]pub struct ListSharedProjectsOutputBuilder { /* private fields */ }
Expand description
A builder for ListSharedProjectsOutput
.
Implementations§
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn projects(self, input: impl Into<String>) -> Self
pub fn projects(self, input: impl Into<String>) -> Self
Appends an item to projects
.
To override the contents of this collection use set_projects
.
The list of ARNs for the build projects shared with the current Amazon Web Services account or user.
sourcepub fn set_projects(self, input: Option<Vec<String>>) -> Self
pub fn set_projects(self, input: Option<Vec<String>>) -> Self
The list of ARNs for the build projects shared with the current Amazon Web Services account or user.
sourcepub fn get_projects(&self) -> &Option<Vec<String>>
pub fn get_projects(&self) -> &Option<Vec<String>>
The list of ARNs for the build projects shared with the current Amazon Web Services account or user.
sourcepub fn build(self) -> ListSharedProjectsOutput
pub fn build(self) -> ListSharedProjectsOutput
Consumes the builder and constructs a ListSharedProjectsOutput
.
Trait Implementations§
source§fn clone(&self) -> ListSharedProjectsOutputBuilder
fn clone(&self) -> ListSharedProjectsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn default() -> ListSharedProjectsOutputBuilder
fn default() -> ListSharedProjectsOutputBuilder
source§fn eq(&self, other: &ListSharedProjectsOutputBuilder) -> bool
fn eq(&self, other: &ListSharedProjectsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.