pub struct ECSTarget {
pub deployment_id: Option<String>,
pub last_updated_at: Option<f64>,
pub lifecycle_events: Option<Vec<LifecycleEvent>>,
pub status: Option<String>,
pub target_arn: Option<String>,
pub target_id: Option<String>,
pub task_sets_info: Option<Vec<ECSTaskSet>>,
}
Expand description
Information about the target of an Amazon ECS deployment.
Fields§
§deployment_id: Option<String>
The unique ID of a deployment.
last_updated_at: Option<f64>
The date and time when the target Amazon ECS application was updated by a deployment.
lifecycle_events: Option<Vec<LifecycleEvent>>
The lifecycle events of the deployment to this target Amazon ECS application.
status: Option<String>
The status an Amazon ECS deployment's target ECS application.
target_arn: Option<String>
The Amazon Resource Name (ARN) of the target.
target_id: Option<String>
The unique ID of a deployment target that has a type of ecsTarget
.
task_sets_info: Option<Vec<ECSTaskSet>>
The ECSTaskSet
objects associated with the ECS target.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ECSTarget
impl<'de> Deserialize<'de> for ECSTarget
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
impl StructuralPartialEq for ECSTarget
Auto Trait Implementations§
impl Freeze for ECSTarget
impl RefUnwindSafe for ECSTarget
impl Send for ECSTarget
impl Sync for ECSTarget
impl Unpin for ECSTarget
impl UnwindSafe for ECSTarget
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