Struct aws_sdk_codebuild::input::ListBuildsForProjectInput
source · [−]#[non_exhaustive]pub struct ListBuildsForProjectInput { /* private fields */ }
Implementations
sourceimpl ListBuildsForProjectInput
impl ListBuildsForProjectInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBuildsForProject, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBuildsForProject, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListBuildsForProject
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBuildsForProjectInput
.
sourceimpl ListBuildsForProjectInput
impl ListBuildsForProjectInput
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the CodeBuild project.
sourcepub fn sort_order(&self) -> Option<&SortOrderType>
pub fn sort_order(&self) -> Option<&SortOrderType>
The order to sort the results in. The results are sorted by build number, not the build identifier. If this is not specified, the results are sorted in descending order.
Valid values include:
-
ASCENDING
: List the build identifiers in ascending order, by build number. -
DESCENDING
: List the build identifiers in descending order, by build number.
If the project has more than 100 builds, setting the sort order will result in an error.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
During a previous call, 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. 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.
Trait Implementations
sourceimpl Clone for ListBuildsForProjectInput
impl Clone for ListBuildsForProjectInput
sourcefn clone(&self) -> ListBuildsForProjectInput
fn clone(&self) -> ListBuildsForProjectInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more