Struct aws_sdk_codebuild::operation::batch_get_projects::builders::BatchGetProjectsInputBuilder
source · #[non_exhaustive]pub struct BatchGetProjectsInputBuilder { /* private fields */ }
Expand description
A builder for BatchGetProjectsInput
.
Implementations§
source§impl BatchGetProjectsInputBuilder
impl BatchGetProjectsInputBuilder
sourcepub fn names(self, input: impl Into<String>) -> Self
pub fn names(self, input: impl Into<String>) -> Self
Appends an item to names
.
To override the contents of this collection use set_names
.
The names or ARNs of the build projects. To get information about a project shared with your Amazon Web Services account, its ARN must be specified. You cannot specify a shared project using its name.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
The names or ARNs of the build projects. To get information about a project shared with your Amazon Web Services account, its ARN must be specified. You cannot specify a shared project using its name.
sourcepub fn get_names(&self) -> &Option<Vec<String>>
pub fn get_names(&self) -> &Option<Vec<String>>
The names or ARNs of the build projects. To get information about a project shared with your Amazon Web Services account, its ARN must be specified. You cannot specify a shared project using its name.
sourcepub fn build(self) -> Result<BatchGetProjectsInput, BuildError>
pub fn build(self) -> Result<BatchGetProjectsInput, BuildError>
Consumes the builder and constructs a BatchGetProjectsInput
.
source§impl BatchGetProjectsInputBuilder
impl BatchGetProjectsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<BatchGetProjectsOutput, SdkError<BatchGetProjectsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<BatchGetProjectsOutput, SdkError<BatchGetProjectsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchGetProjectsInputBuilder
impl Clone for BatchGetProjectsInputBuilder
source§fn clone(&self) -> BatchGetProjectsInputBuilder
fn clone(&self) -> BatchGetProjectsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchGetProjectsInputBuilder
impl Debug for BatchGetProjectsInputBuilder
source§impl Default for BatchGetProjectsInputBuilder
impl Default for BatchGetProjectsInputBuilder
source§fn default() -> BatchGetProjectsInputBuilder
fn default() -> BatchGetProjectsInputBuilder
source§impl PartialEq for BatchGetProjectsInputBuilder
impl PartialEq for BatchGetProjectsInputBuilder
source§fn eq(&self, other: &BatchGetProjectsInputBuilder) -> bool
fn eq(&self, other: &BatchGetProjectsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetProjectsInputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetProjectsInputBuilder
impl RefUnwindSafe for BatchGetProjectsInputBuilder
impl Send for BatchGetProjectsInputBuilder
impl Sync for BatchGetProjectsInputBuilder
impl Unpin for BatchGetProjectsInputBuilder
impl UnwindSafe for BatchGetProjectsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more