Struct aws_sdk_ecs::input::DescribeTasksInput [−][src]
#[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 are
not included in the response.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeTasks, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeTasks, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeTasks
>
Creates a new builder-style object to manufacture DescribeTasksInput
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeTasksInput
impl Send for DescribeTasksInput
impl Sync for DescribeTasksInput
impl Unpin for DescribeTasksInput
impl UnwindSafe for DescribeTasksInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more