Struct aws_sdk_codedeploy::operation::list_deployment_groups::builders::ListDeploymentGroupsInputBuilder
source · #[non_exhaustive]pub struct ListDeploymentGroupsInputBuilder { /* private fields */ }
Expand description
A builder for ListDeploymentGroupsInput
.
Implementations§
source§impl ListDeploymentGroupsInputBuilder
impl ListDeploymentGroupsInputBuilder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of an CodeDeploy application associated with the user or Amazon Web Services account.
This field is required.sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of an CodeDeploy application associated with the user or Amazon Web Services account.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of an CodeDeploy application associated with the user or Amazon Web Services account.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list.
sourcepub fn build(self) -> Result<ListDeploymentGroupsInput, BuildError>
pub fn build(self) -> Result<ListDeploymentGroupsInput, BuildError>
Consumes the builder and constructs a ListDeploymentGroupsInput
.
source§impl ListDeploymentGroupsInputBuilder
impl ListDeploymentGroupsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListDeploymentGroupsOutput, SdkError<ListDeploymentGroupsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListDeploymentGroupsOutput, SdkError<ListDeploymentGroupsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDeploymentGroupsInputBuilder
impl Clone for ListDeploymentGroupsInputBuilder
source§fn clone(&self) -> ListDeploymentGroupsInputBuilder
fn clone(&self) -> ListDeploymentGroupsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListDeploymentGroupsInputBuilder
impl Default for ListDeploymentGroupsInputBuilder
source§fn default() -> ListDeploymentGroupsInputBuilder
fn default() -> ListDeploymentGroupsInputBuilder
source§impl PartialEq for ListDeploymentGroupsInputBuilder
impl PartialEq for ListDeploymentGroupsInputBuilder
source§fn eq(&self, other: &ListDeploymentGroupsInputBuilder) -> bool
fn eq(&self, other: &ListDeploymentGroupsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListDeploymentGroupsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDeploymentGroupsInputBuilder
impl RefUnwindSafe for ListDeploymentGroupsInputBuilder
impl Send for ListDeploymentGroupsInputBuilder
impl Sync for ListDeploymentGroupsInputBuilder
impl Unpin for ListDeploymentGroupsInputBuilder
impl UnwindSafe for ListDeploymentGroupsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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