Struct aws_sdk_ecs::operation::create_task_set::CreateTaskSetOutput
source · #[non_exhaustive]pub struct CreateTaskSetOutput {
pub task_set: Option<TaskSet>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_set: Option<TaskSet>
Information about a set of Amazon ECS tasks in either an CodeDeploy or an EXTERNAL
deployment. A task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic.
Implementations§
source§impl CreateTaskSetOutput
impl CreateTaskSetOutput
sourcepub fn builder() -> CreateTaskSetOutputBuilder
pub fn builder() -> CreateTaskSetOutputBuilder
Creates a new builder-style object to manufacture CreateTaskSetOutput
.
Trait Implementations§
source§impl Clone for CreateTaskSetOutput
impl Clone for CreateTaskSetOutput
source§fn clone(&self) -> CreateTaskSetOutput
fn clone(&self) -> CreateTaskSetOutput
Returns a copy 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 CreateTaskSetOutput
impl Debug for CreateTaskSetOutput
source§impl PartialEq<CreateTaskSetOutput> for CreateTaskSetOutput
impl PartialEq<CreateTaskSetOutput> for CreateTaskSetOutput
source§fn eq(&self, other: &CreateTaskSetOutput) -> bool
fn eq(&self, other: &CreateTaskSetOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateTaskSetOutput
impl RequestId for CreateTaskSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateTaskSetOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateTaskSetOutput
impl Send for CreateTaskSetOutput
impl Sync for CreateTaskSetOutput
impl Unpin for CreateTaskSetOutput
impl UnwindSafe for CreateTaskSetOutput
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