Struct aws_sdk_codedeploy::operation::get_deployment_target::builders::GetDeploymentTargetOutputBuilder
source · #[non_exhaustive]pub struct GetDeploymentTargetOutputBuilder { /* private fields */ }
Expand description
A builder for GetDeploymentTargetOutput
.
Implementations§
source§impl GetDeploymentTargetOutputBuilder
impl GetDeploymentTargetOutputBuilder
sourcepub fn deployment_target(self, input: DeploymentTarget) -> Self
pub fn deployment_target(self, input: DeploymentTarget) -> Self
A deployment target that contains information about a deployment such as its status, lifecycle events, and when it was last updated. It also contains metadata about the deployment target. The deployment target metadata depends on the deployment target's type (instanceTarget
, lambdaTarget
, or ecsTarget
).
sourcepub fn set_deployment_target(self, input: Option<DeploymentTarget>) -> Self
pub fn set_deployment_target(self, input: Option<DeploymentTarget>) -> Self
A deployment target that contains information about a deployment such as its status, lifecycle events, and when it was last updated. It also contains metadata about the deployment target. The deployment target metadata depends on the deployment target's type (instanceTarget
, lambdaTarget
, or ecsTarget
).
sourcepub fn get_deployment_target(&self) -> &Option<DeploymentTarget>
pub fn get_deployment_target(&self) -> &Option<DeploymentTarget>
A deployment target that contains information about a deployment such as its status, lifecycle events, and when it was last updated. It also contains metadata about the deployment target. The deployment target metadata depends on the deployment target's type (instanceTarget
, lambdaTarget
, or ecsTarget
).
sourcepub fn build(self) -> GetDeploymentTargetOutput
pub fn build(self) -> GetDeploymentTargetOutput
Consumes the builder and constructs a GetDeploymentTargetOutput
.
Trait Implementations§
source§impl Clone for GetDeploymentTargetOutputBuilder
impl Clone for GetDeploymentTargetOutputBuilder
source§fn clone(&self) -> GetDeploymentTargetOutputBuilder
fn clone(&self) -> GetDeploymentTargetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetDeploymentTargetOutputBuilder
impl Default for GetDeploymentTargetOutputBuilder
source§fn default() -> GetDeploymentTargetOutputBuilder
fn default() -> GetDeploymentTargetOutputBuilder
source§impl PartialEq for GetDeploymentTargetOutputBuilder
impl PartialEq for GetDeploymentTargetOutputBuilder
source§fn eq(&self, other: &GetDeploymentTargetOutputBuilder) -> bool
fn eq(&self, other: &GetDeploymentTargetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDeploymentTargetOutputBuilder
Auto Trait Implementations§
impl Freeze for GetDeploymentTargetOutputBuilder
impl RefUnwindSafe for GetDeploymentTargetOutputBuilder
impl Send for GetDeploymentTargetOutputBuilder
impl Sync for GetDeploymentTargetOutputBuilder
impl Unpin for GetDeploymentTargetOutputBuilder
impl UnwindSafe for GetDeploymentTargetOutputBuilder
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