pub struct DescribeServicesRequest {
pub cluster: Option<String>,
pub include: Option<Vec<String>>,
pub services: Vec<String>,
}
Fields§
§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.
include: Option<Vec<String>>
Specifies 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 are not included in the response.
services: Vec<String>
A list of services to describe. You may specify up to 10 services to describe in a single operation.
Trait Implementations§
Source§impl Clone for DescribeServicesRequest
impl Clone for DescribeServicesRequest
Source§fn clone(&self) -> DescribeServicesRequest
fn clone(&self) -> DescribeServicesRequest
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 DescribeServicesRequest
impl Debug for DescribeServicesRequest
Source§impl Default for DescribeServicesRequest
impl Default for DescribeServicesRequest
Source§fn default() -> DescribeServicesRequest
fn default() -> DescribeServicesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeServicesRequest
impl PartialEq for DescribeServicesRequest
Source§impl Serialize for DescribeServicesRequest
impl Serialize for DescribeServicesRequest
impl StructuralPartialEq for DescribeServicesRequest
Auto Trait Implementations§
impl Freeze for DescribeServicesRequest
impl RefUnwindSafe for DescribeServicesRequest
impl Send for DescribeServicesRequest
impl Sync for DescribeServicesRequest
impl Unpin for DescribeServicesRequest
impl UnwindSafe for DescribeServicesRequest
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