#[non_exhaustive]pub struct DescribeServicesInput {
pub cluster: Option<String>,
pub services: Option<Vec<String>>,
pub include: Option<Vec<ServiceField>>,
}
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)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.
services: Option<Vec<String>>
A list of services to describe. You may specify up to 10 services to describe in a single operation.
include: Option<Vec<ServiceField>>
Determines whether you want to see the resource tags for the service. 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 DescribeServicesInput
impl DescribeServicesInput
sourcepub fn cluster(&self) -> Option<&str>
pub fn cluster(&self) -> Option<&str>
The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.
sourcepub fn services(&self) -> &[String]
pub fn services(&self) -> &[String]
A list of services to describe. You may specify up to 10 services to describe in a single operation.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .services.is_none()
.
sourcepub fn include(&self) -> &[ServiceField]
pub fn include(&self) -> &[ServiceField]
Determines whether you want to see the resource tags for the service. 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 DescribeServicesInput
impl DescribeServicesInput
sourcepub fn builder() -> DescribeServicesInputBuilder
pub fn builder() -> DescribeServicesInputBuilder
Creates a new builder-style object to manufacture DescribeServicesInput
.
Trait Implementations§
source§impl Clone for DescribeServicesInput
impl Clone for DescribeServicesInput
source§fn clone(&self) -> DescribeServicesInput
fn clone(&self) -> DescribeServicesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeServicesInput
impl Debug for DescribeServicesInput
source§impl PartialEq for DescribeServicesInput
impl PartialEq for DescribeServicesInput
source§fn eq(&self, other: &DescribeServicesInput) -> bool
fn eq(&self, other: &DescribeServicesInput) -> bool
self
and other
values to be equal, and is used
by ==
.