pub struct ECSService {
pub cluster_name: Option<String>,
pub service_name: Option<String>,
}
Expand description
Contains the service and cluster names used to identify an Amazon ECS deployment's target.
Fields§
§cluster_name: Option<String>
The name of the cluster that the Amazon ECS service is associated with.
service_name: Option<String>
The name of the target Amazon ECS service.
Trait Implementations§
Source§impl Clone for ECSService
impl Clone for ECSService
Source§fn clone(&self) -> ECSService
fn clone(&self) -> ECSService
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 ECSService
impl Debug for ECSService
Source§impl Default for ECSService
impl Default for ECSService
Source§fn default() -> ECSService
fn default() -> ECSService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ECSService
impl<'de> Deserialize<'de> for ECSService
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ECSService
impl PartialEq for ECSService
Source§impl Serialize for ECSService
impl Serialize for ECSService
impl StructuralPartialEq for ECSService
Auto Trait Implementations§
impl Freeze for ECSService
impl RefUnwindSafe for ECSService
impl Send for ECSService
impl Sync for ECSService
impl Unpin for ECSService
impl UnwindSafe for ECSService
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