pub struct DescribeClustersRequest {
pub clusters: Option<Vec<String>>,
pub include: Option<Vec<String>>,
}
Fields§
§clusters: Option<Vec<String>>
A list of up to 100 cluster names or full cluster Amazon Resource Name (ARN) entries. If you do not specify a cluster, the default cluster is assumed.
include: Option<Vec<String>>
Whether to include additional information about your clusters in the response. If this field is omitted, the attachments, statistics, and tags are not included.
If ATTACHMENTS
is specified, the attachments for the container instances or tasks within the cluster are included.
If SETTINGS
is specified, the settings for the cluster are included.
If STATISTICS
is specified, the following additional information, separated by launch type, is included:
-
runningEC2TasksCount
-
runningFargateTasksCount
-
pendingEC2TasksCount
-
pendingFargateTasksCount
-
activeEC2ServiceCount
-
activeFargateServiceCount
-
drainingEC2ServiceCount
-
drainingFargateServiceCount
If TAGS
is specified, the metadata tags associated with the cluster are included.
Trait Implementations§
Source§impl Clone for DescribeClustersRequest
impl Clone for DescribeClustersRequest
Source§fn clone(&self) -> DescribeClustersRequest
fn clone(&self) -> DescribeClustersRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more