#[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails { /* private fields */ }
Expand description
A dependency that is defined for container startup and shutdown.
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() -> Builder
pub fn builder() -> Builder
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<AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails> for AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
impl PartialEq<AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails> 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 ==
.