pub struct DescribeContainerInstancesRequest {
pub cluster: Option<String>,
pub container_instances: Vec<String>,
pub include: Option<Vec<String>>,
}
Fields§
§cluster: Option<String>
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the container instance or container instances you are describing were launched in any cluster other than the default cluster.
container_instances: Vec<String>
A list of up to 100 container instance IDs or full Amazon Resource Name (ARN) entries.
include: Option<Vec<String>>
Specifies whether you want to see the resource tags for the container instance. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags are not included in the response.
Trait Implementations§
Source§impl Clone for DescribeContainerInstancesRequest
impl Clone for DescribeContainerInstancesRequest
Source§fn clone(&self) -> DescribeContainerInstancesRequest
fn clone(&self) -> DescribeContainerInstancesRequest
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 DescribeContainerInstancesRequest
impl Default for DescribeContainerInstancesRequest
Source§fn default() -> DescribeContainerInstancesRequest
fn default() -> DescribeContainerInstancesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeContainerInstancesRequest
impl PartialEq for DescribeContainerInstancesRequest
Source§fn eq(&self, other: &DescribeContainerInstancesRequest) -> bool
fn eq(&self, other: &DescribeContainerInstancesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeContainerInstancesRequest
Auto Trait Implementations§
impl Freeze for DescribeContainerInstancesRequest
impl RefUnwindSafe for DescribeContainerInstancesRequest
impl Send for DescribeContainerInstancesRequest
impl Sync for DescribeContainerInstancesRequest
impl Unpin for DescribeContainerInstancesRequest
impl UnwindSafe for DescribeContainerInstancesRequest
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