#[non_exhaustive]pub struct TaskDefinitionPlacementConstraint {
pub type: Option<TaskDefinitionPlacementConstraintType>,
pub expression: Option<String>,
}
Expand description
An object representing a constraint on task placement in the task definition. For more information, see Task placement constraints in the Amazon Elastic Container Service Developer Guide.
Task placement constraints aren't supported for tasks run on Fargate.
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<TaskDefinitionPlacementConstraintType>
The type of constraint. The MemberOf
constraint restricts selection to be from a group of valid candidates.
expression: Option<String>
A cluster query language expression to apply to the constraint. For more information, see Cluster query language in the Amazon Elastic Container Service Developer Guide.
Implementations
sourceimpl TaskDefinitionPlacementConstraint
impl TaskDefinitionPlacementConstraint
sourcepub fn type(&self) -> Option<&TaskDefinitionPlacementConstraintType>
pub fn type(&self) -> Option<&TaskDefinitionPlacementConstraintType>
The type of constraint. The MemberOf
constraint restricts selection to be from 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. For more information, see Cluster query language in the Amazon Elastic Container Service Developer Guide.
sourceimpl TaskDefinitionPlacementConstraint
impl TaskDefinitionPlacementConstraint
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TaskDefinitionPlacementConstraint
Trait Implementations
sourceimpl Clone for TaskDefinitionPlacementConstraint
impl Clone for TaskDefinitionPlacementConstraint
sourcefn clone(&self) -> TaskDefinitionPlacementConstraint
fn clone(&self) -> TaskDefinitionPlacementConstraint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<TaskDefinitionPlacementConstraint> for TaskDefinitionPlacementConstraint
impl PartialEq<TaskDefinitionPlacementConstraint> for TaskDefinitionPlacementConstraint
sourcefn eq(&self, other: &TaskDefinitionPlacementConstraint) -> bool
fn eq(&self, other: &TaskDefinitionPlacementConstraint) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TaskDefinitionPlacementConstraint) -> bool
fn ne(&self, other: &TaskDefinitionPlacementConstraint) -> bool
This method tests for !=
.
impl StructuralPartialEq for TaskDefinitionPlacementConstraint
Auto Trait Implementations
impl RefUnwindSafe for TaskDefinitionPlacementConstraint
impl Send for TaskDefinitionPlacementConstraint
impl Sync for TaskDefinitionPlacementConstraint
impl Unpin for TaskDefinitionPlacementConstraint
impl UnwindSafe for TaskDefinitionPlacementConstraint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more