#[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails {
pub condition: Option<String>,
pub container_name: Option<String>,
}
Expand description
A dependency that is defined for container startup and shutdown.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.condition: Option<String>
The dependency condition of the dependent container. Indicates the required status of the dependent container before the current container can start. Valid values are as follows:
-
COMPLETE
-
HEALTHY
-
SUCCESS
-
START
container_name: Option<String>
The name of the dependent container.
Implementations§
source§impl AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
sourcepub fn condition(&self) -> Option<&str>
pub fn condition(&self) -> Option<&str>
The dependency condition of the dependent container. Indicates the required status of the dependent container before the current container can start. Valid values are as follows:
-
COMPLETE
-
HEALTHY
-
SUCCESS
-
START
sourcepub fn container_name(&self) -> Option<&str>
pub fn container_name(&self) -> Option<&str>
The name of the dependent container.
source§impl AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
sourcepub fn builder(
) -> AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetailsBuilder
pub fn builder( ) -> AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetailsBuilder
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
.
Trait Implementations§
source§impl Clone for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl Clone for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
source§fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
fn clone(&self) -> AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
source§fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
) -> bool
fn eq( &self, other: &AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl Send for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl Sync for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl Unpin for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl UnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.