pub struct DescribeTaskSetsRequest {
pub cluster: String,
pub include: Option<Vec<String>>,
pub service: String,
pub task_sets: Option<Vec<String>>,
}
Fields§
§cluster: String
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task sets exist in.
include: Option<Vec<String>>
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 are not included in the response.
service: 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.
Trait Implementations§
Source§impl Clone for DescribeTaskSetsRequest
impl Clone for DescribeTaskSetsRequest
Source§fn clone(&self) -> DescribeTaskSetsRequest
fn clone(&self) -> DescribeTaskSetsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeTaskSetsRequest
impl Debug for DescribeTaskSetsRequest
Source§impl Default for DescribeTaskSetsRequest
impl Default for DescribeTaskSetsRequest
Source§fn default() -> DescribeTaskSetsRequest
fn default() -> DescribeTaskSetsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeTaskSetsRequest
impl PartialEq for DescribeTaskSetsRequest
Source§impl Serialize for DescribeTaskSetsRequest
impl Serialize for DescribeTaskSetsRequest
impl StructuralPartialEq for DescribeTaskSetsRequest
Auto Trait Implementations§
impl Freeze for DescribeTaskSetsRequest
impl RefUnwindSafe for DescribeTaskSetsRequest
impl Send for DescribeTaskSetsRequest
impl Sync for DescribeTaskSetsRequest
impl Unpin for DescribeTaskSetsRequest
impl UnwindSafe for DescribeTaskSetsRequest
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
Mutably borrows from an owned value. Read more