pub struct FailSsmCommandRequest {
pub account_id: Option<String>,
pub instance_id: Option<String>,
pub status_details: Option<String>,
pub standard_error_content: Option<String>,
}Fields§
§account_id: Option<String>§instance_id: Option<String>Optional: target a single invocation. When None, every
invocation on the command is flipped to Failed.
status_details: Option<String>Optional friendly status detail (e.g. “Script exited with code 7”). Defaults to “Failed”.
standard_error_content: Option<String>Optional captured stderr to expose via GetCommandInvocation.
Trait Implementations§
Source§impl Clone for FailSsmCommandRequest
impl Clone for FailSsmCommandRequest
Source§fn clone(&self) -> FailSsmCommandRequest
fn clone(&self) -> FailSsmCommandRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FailSsmCommandRequest
impl Debug for FailSsmCommandRequest
Source§impl Default for FailSsmCommandRequest
impl Default for FailSsmCommandRequest
Source§fn default() -> FailSsmCommandRequest
fn default() -> FailSsmCommandRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FailSsmCommandRequest
impl<'de> Deserialize<'de> for FailSsmCommandRequest
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
Auto Trait Implementations§
impl Freeze for FailSsmCommandRequest
impl RefUnwindSafe for FailSsmCommandRequest
impl Send for FailSsmCommandRequest
impl Sync for FailSsmCommandRequest
impl Unpin for FailSsmCommandRequest
impl UnsafeUnpin for FailSsmCommandRequest
impl UnwindSafe for FailSsmCommandRequest
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