Struct aws_sdk_codebuild::output::ListBuildsOutput
source · [−]#[non_exhaustive]pub struct ListBuildsOutput {
pub ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ids: Option<Vec<String>>
A list of build IDs, with each build ID representing a single build.
next_token: Option<String>
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.
Implementations
A list of build IDs, with each build ID representing a single build.
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.
Creates a new builder-style object to manufacture ListBuildsOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListBuildsOutput
impl Send for ListBuildsOutput
impl Sync for ListBuildsOutput
impl Unpin for ListBuildsOutput
impl UnwindSafe for ListBuildsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more