pub struct Builder { /* private fields */ }
Expand description
A builder for ListSharedProjectsOutput
.
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
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 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 build(self) -> ListSharedProjectsOutput
pub fn build(self) -> ListSharedProjectsOutput
Consumes the builder and constructs a ListSharedProjectsOutput
.