pub struct DescribeTaskDefinitionRequest {
pub include: Option<Vec<String>>,
pub task_definition: String,
}
Fields§
§include: Option<Vec<String>>
Specifies 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 are not included in the response.
task_definition: 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.
Trait Implementations§
Source§impl Clone for DescribeTaskDefinitionRequest
impl Clone for DescribeTaskDefinitionRequest
Source§fn clone(&self) -> DescribeTaskDefinitionRequest
fn clone(&self) -> DescribeTaskDefinitionRequest
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 Default for DescribeTaskDefinitionRequest
impl Default for DescribeTaskDefinitionRequest
Source§fn default() -> DescribeTaskDefinitionRequest
fn default() -> DescribeTaskDefinitionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeTaskDefinitionRequest
impl PartialEq for DescribeTaskDefinitionRequest
Source§fn eq(&self, other: &DescribeTaskDefinitionRequest) -> bool
fn eq(&self, other: &DescribeTaskDefinitionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeTaskDefinitionRequest
Auto Trait Implementations§
impl Freeze for DescribeTaskDefinitionRequest
impl RefUnwindSafe for DescribeTaskDefinitionRequest
impl Send for DescribeTaskDefinitionRequest
impl Sync for DescribeTaskDefinitionRequest
impl Unpin for DescribeTaskDefinitionRequest
impl UnwindSafe for DescribeTaskDefinitionRequest
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