#[non_exhaustive]pub struct DescribeTaskSetsInput {
    pub cluster: Option<String>,
    pub service: Option<String>,
    pub task_sets: Option<Vec<String>>,
    pub include: Option<Vec<TaskSetField>>,
}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 service that the task sets exist in.
service: Option<String>The short name or full Amazon Resource Name (ARN) of the service that the task sets exist in.
task_sets: Option<Vec<String>>The ID or full Amazon Resource Name (ARN) of task sets to describe.
include: Option<Vec<TaskSetField>>Specifies whether to see the resource tags for the task set. 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 DescribeTaskSetsInput
 
impl DescribeTaskSetsInput
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 service that the task sets exist in.
sourcepub fn service(&self) -> Option<&str>
 
pub fn service(&self) -> Option<&str>
The short name or full Amazon Resource Name (ARN) of the service that the task sets exist in.
sourcepub fn task_sets(&self) -> &[String]
 
pub fn task_sets(&self) -> &[String]
The ID or full Amazon Resource Name (ARN) of task sets to describe.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .task_sets.is_none().
sourcepub fn include(&self) -> &[TaskSetField]
 
pub fn include(&self) -> &[TaskSetField]
Specifies whether to see the resource tags for the task set. 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 DescribeTaskSetsInput
 
impl DescribeTaskSetsInput
sourcepub fn builder() -> DescribeTaskSetsInputBuilder
 
pub fn builder() -> DescribeTaskSetsInputBuilder
Creates a new builder-style object to manufacture DescribeTaskSetsInput.
Trait Implementations§
source§impl Clone for DescribeTaskSetsInput
 
impl Clone for DescribeTaskSetsInput
source§fn clone(&self) -> DescribeTaskSetsInput
 
fn clone(&self) -> DescribeTaskSetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeTaskSetsInput
 
impl Debug for DescribeTaskSetsInput
source§impl PartialEq for DescribeTaskSetsInput
 
impl PartialEq for DescribeTaskSetsInput
source§fn eq(&self, other: &DescribeTaskSetsInput) -> bool
 
fn eq(&self, other: &DescribeTaskSetsInput) -> bool
self and other values to be equal, and is used
by ==.