Struct aws_sdk_codebuild::output::list_projects_output::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for ListProjectsOutput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
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 build project names, with each build project name representing a single build project.
sourcepub fn set_projects(self, input: Option<Vec<String>>) -> Self
pub fn set_projects(self, input: Option<Vec<String>>) -> Self
The list of build project names, with each build project name representing a single build project.
sourcepub fn build(self) -> ListProjectsOutput
pub fn build(self) -> ListProjectsOutput
Consumes the builder and constructs a ListProjectsOutput
.