Struct aws_sdk_codedeploy::operation::list_deployment_configs::builders::ListDeploymentConfigsOutputBuilder
source · #[non_exhaustive]pub struct ListDeploymentConfigsOutputBuilder { /* private fields */ }Expand description
A builder for ListDeploymentConfigsOutput.
Implementations§
source§impl ListDeploymentConfigsOutputBuilder
impl ListDeploymentConfigsOutputBuilder
sourcepub fn deployment_configs_list(self, input: impl Into<String>) -> Self
pub fn deployment_configs_list(self, input: impl Into<String>) -> Self
Appends an item to deployment_configs_list.
To override the contents of this collection use set_deployment_configs_list.
A list of deployment configurations, including built-in configurations such as CodeDeployDefault.OneAtATime.
sourcepub fn set_deployment_configs_list(self, input: Option<Vec<String>>) -> Self
pub fn set_deployment_configs_list(self, input: Option<Vec<String>>) -> Self
A list of deployment configurations, including built-in configurations such as CodeDeployDefault.OneAtATime.
sourcepub fn get_deployment_configs_list(&self) -> &Option<Vec<String>>
pub fn get_deployment_configs_list(&self) -> &Option<Vec<String>>
A list of deployment configurations, including built-in configurations such as CodeDeployDefault.OneAtATime.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.
sourcepub fn build(self) -> ListDeploymentConfigsOutput
pub fn build(self) -> ListDeploymentConfigsOutput
Consumes the builder and constructs a ListDeploymentConfigsOutput.
Trait Implementations§
source§impl Clone for ListDeploymentConfigsOutputBuilder
impl Clone for ListDeploymentConfigsOutputBuilder
source§fn clone(&self) -> ListDeploymentConfigsOutputBuilder
fn clone(&self) -> ListDeploymentConfigsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListDeploymentConfigsOutputBuilder
impl Default for ListDeploymentConfigsOutputBuilder
source§fn default() -> ListDeploymentConfigsOutputBuilder
fn default() -> ListDeploymentConfigsOutputBuilder
source§impl PartialEq for ListDeploymentConfigsOutputBuilder
impl PartialEq for ListDeploymentConfigsOutputBuilder
source§fn eq(&self, other: &ListDeploymentConfigsOutputBuilder) -> bool
fn eq(&self, other: &ListDeploymentConfigsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDeploymentConfigsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDeploymentConfigsOutputBuilder
impl RefUnwindSafe for ListDeploymentConfigsOutputBuilder
impl Send for ListDeploymentConfigsOutputBuilder
impl Sync for ListDeploymentConfigsOutputBuilder
impl Unpin for ListDeploymentConfigsOutputBuilder
impl UnwindSafe for ListDeploymentConfigsOutputBuilder
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