#[non_exhaustive]pub struct DescribeTaskDefinitionInput {
pub task_definition: Option<String>,
pub include: Option<Vec<TaskDefinitionField>>,
}
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.task_definition: Option<String>
The family
for the latest ACTIVE
revision, family
and revision
(family:revision
) for a specific revision in the family, or full Amazon Resource Name (ARN) of the task definition to describe.
include: Option<Vec<TaskDefinitionField>>
Determines whether to see the resource tags for the task definition. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.
Implementations§
source§impl DescribeTaskDefinitionInput
impl DescribeTaskDefinitionInput
sourcepub fn task_definition(&self) -> Option<&str>
pub fn task_definition(&self) -> Option<&str>
The family
for the latest ACTIVE
revision, family
and revision
(family:revision
) for a specific revision in the family, or full Amazon Resource Name (ARN) of the task definition to describe.
sourcepub fn include(&self) -> &[TaskDefinitionField]
pub fn include(&self) -> &[TaskDefinitionField]
Determines whether to see the resource tags for the task definition. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .include.is_none()
.
source§impl DescribeTaskDefinitionInput
impl DescribeTaskDefinitionInput
sourcepub fn builder() -> DescribeTaskDefinitionInputBuilder
pub fn builder() -> DescribeTaskDefinitionInputBuilder
Creates a new builder-style object to manufacture DescribeTaskDefinitionInput
.
Trait Implementations§
source§impl Clone for DescribeTaskDefinitionInput
impl Clone for DescribeTaskDefinitionInput
source§fn clone(&self) -> DescribeTaskDefinitionInput
fn clone(&self) -> DescribeTaskDefinitionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeTaskDefinitionInput
impl Debug for DescribeTaskDefinitionInput
source§impl PartialEq for DescribeTaskDefinitionInput
impl PartialEq for DescribeTaskDefinitionInput
source§fn eq(&self, other: &DescribeTaskDefinitionInput) -> bool
fn eq(&self, other: &DescribeTaskDefinitionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeTaskDefinitionInput
Auto Trait Implementations§
impl Freeze for DescribeTaskDefinitionInput
impl RefUnwindSafe for DescribeTaskDefinitionInput
impl Send for DescribeTaskDefinitionInput
impl Sync for DescribeTaskDefinitionInput
impl Unpin for DescribeTaskDefinitionInput
impl UnwindSafe for DescribeTaskDefinitionInput
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> 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