Struct aws_sdk_ecs::types::PlacementConstraint
source · #[non_exhaustive]pub struct PlacementConstraint {
pub type: Option<PlacementConstraintType>,
pub expression: Option<String>,
}
Expand description
An object representing a constraint on task placement. For more information, see Task placement constraints in the Amazon Elastic Container Service Developer Guide.
If you're using the Fargate launch type, task placement constraints aren't supported.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<PlacementConstraintType>
The type of constraint. Use distinctInstance
to ensure that each task in a particular group is running on a different container instance. Use memberOf
to restrict the selection to a group of valid candidates.
expression: Option<String>
A cluster query language expression to apply to the constraint. The expression can have a maximum length of 2000 characters. You can't specify an expression if the constraint type is distinctInstance
. For more information, see Cluster query language in the Amazon Elastic Container Service Developer Guide.
Implementations§
source§impl PlacementConstraint
impl PlacementConstraint
sourcepub fn type(&self) -> Option<&PlacementConstraintType>
pub fn type(&self) -> Option<&PlacementConstraintType>
The type of constraint. Use distinctInstance
to ensure that each task in a particular group is running on a different container instance. Use memberOf
to restrict the selection to a group of valid candidates.
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
A cluster query language expression to apply to the constraint. The expression can have a maximum length of 2000 characters. You can't specify an expression if the constraint type is distinctInstance
. For more information, see Cluster query language in the Amazon Elastic Container Service Developer Guide.
source§impl PlacementConstraint
impl PlacementConstraint
sourcepub fn builder() -> PlacementConstraintBuilder
pub fn builder() -> PlacementConstraintBuilder
Creates a new builder-style object to manufacture PlacementConstraint
.
Trait Implementations§
source§impl Clone for PlacementConstraint
impl Clone for PlacementConstraint
source§fn clone(&self) -> PlacementConstraint
fn clone(&self) -> PlacementConstraint
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PlacementConstraint
impl Debug for PlacementConstraint
source§impl PartialEq for PlacementConstraint
impl PartialEq for PlacementConstraint
source§fn eq(&self, other: &PlacementConstraint) -> bool
fn eq(&self, other: &PlacementConstraint) -> bool
self
and other
values to be equal, and is used
by ==
.