pub struct CreateServiceResponse {
pub service: Option<Service>,
}
Fields§
§service: Option<Service>
The full description of your service following the create call.
If a service is using the ECS
deployment controller, the deploymentController
and taskSets
parameters will not be returned.
If the service is using the CODE_DEPLOY
deployment controller, the deploymentController
, taskSets
and deployments
parameters will be returned, however the deployments
parameter will be an empty list.
Trait Implementations§
Source§impl Clone for CreateServiceResponse
impl Clone for CreateServiceResponse
Source§fn clone(&self) -> CreateServiceResponse
fn clone(&self) -> CreateServiceResponse
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 CreateServiceResponse
impl Debug for CreateServiceResponse
Source§impl Default for CreateServiceResponse
impl Default for CreateServiceResponse
Source§fn default() -> CreateServiceResponse
fn default() -> CreateServiceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateServiceResponse
impl<'de> Deserialize<'de> for CreateServiceResponse
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 CreateServiceResponse
impl PartialEq for CreateServiceResponse
impl StructuralPartialEq for CreateServiceResponse
Auto Trait Implementations§
impl Freeze for CreateServiceResponse
impl RefUnwindSafe for CreateServiceResponse
impl Send for CreateServiceResponse
impl Sync for CreateServiceResponse
impl Unpin for CreateServiceResponse
impl UnwindSafe for CreateServiceResponse
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