Struct aws_sdk_ecs::operation::describe_tasks::DescribeTasksInput
source · #[non_exhaustive]pub struct DescribeTasksInput {
pub cluster: Option<String>,
pub tasks: Option<Vec<String>>,
pub include: Option<Vec<TaskField>>,
}
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.cluster: Option<String>
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task or tasks to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the task or tasks you are describing were launched in any cluster other than the default cluster.
tasks: Option<Vec<String>>
A list of up to 100 task IDs or full ARN entries.
include: Option<Vec<TaskField>>
Specifies whether you want to see the resource tags for the task. 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 DescribeTasksInput
impl DescribeTasksInput
sourcepub fn cluster(&self) -> Option<&str>
pub fn cluster(&self) -> Option<&str>
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task or tasks to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the task or tasks you are describing were launched in any cluster other than the default cluster.
sourcepub fn tasks(&self) -> &[String]
pub fn tasks(&self) -> &[String]
A list of up to 100 task IDs or full ARN entries.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tasks.is_none()
.
sourcepub fn include(&self) -> &[TaskField]
pub fn include(&self) -> &[TaskField]
Specifies whether you want to see the resource tags for the task. 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 DescribeTasksInput
impl DescribeTasksInput
sourcepub fn builder() -> DescribeTasksInputBuilder
pub fn builder() -> DescribeTasksInputBuilder
Creates a new builder-style object to manufacture DescribeTasksInput
.
Trait Implementations§
source§impl Clone for DescribeTasksInput
impl Clone for DescribeTasksInput
source§fn clone(&self) -> DescribeTasksInput
fn clone(&self) -> DescribeTasksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeTasksInput
impl Debug for DescribeTasksInput
source§impl PartialEq for DescribeTasksInput
impl PartialEq for DescribeTasksInput
source§fn eq(&self, other: &DescribeTasksInput) -> bool
fn eq(&self, other: &DescribeTasksInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeTasksInput
Auto Trait Implementations§
impl Freeze for DescribeTasksInput
impl RefUnwindSafe for DescribeTasksInput
impl Send for DescribeTasksInput
impl Sync for DescribeTasksInput
impl Unpin for DescribeTasksInput
impl UnwindSafe for DescribeTasksInput
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