pub struct SsmCommand {Show 16 fields
pub command_id: String,
pub document_name: String,
pub instance_ids: Vec<String>,
pub parameters: HashMap<String, Vec<String>>,
pub status: String,
pub requested_date_time: DateTime<Utc>,
pub comment: Option<String>,
pub output_s3_bucket_name: Option<String>,
pub output_s3_key_prefix: Option<String>,
pub output_s3_region: Option<String>,
pub timeout_seconds: Option<i64>,
pub service_role_arn: Option<String>,
pub notification_config: Option<Value>,
pub targets: Vec<Value>,
pub document_hash: Option<String>,
pub document_hash_type: Option<String>,
}Fields§
§command_id: String§document_name: String§instance_ids: Vec<String>§parameters: HashMap<String, Vec<String>>§status: String§requested_date_time: DateTime<Utc>§comment: Option<String>§output_s3_bucket_name: Option<String>§output_s3_key_prefix: Option<String>§output_s3_region: Option<String>§timeout_seconds: Option<i64>§service_role_arn: Option<String>§notification_config: Option<Value>§targets: Vec<Value>§document_hash: Option<String>§document_hash_type: Option<String>Trait Implementations§
Source§impl Clone for SsmCommand
impl Clone for SsmCommand
Source§fn clone(&self) -> SsmCommand
fn clone(&self) -> SsmCommand
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 SsmCommand
impl Debug for SsmCommand
Source§impl<'de> Deserialize<'de> for SsmCommand
impl<'de> Deserialize<'de> for SsmCommand
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 SsmCommand
impl RefUnwindSafe for SsmCommand
impl Send for SsmCommand
impl Sync for SsmCommand
impl Unpin for SsmCommand
impl UnsafeUnpin for SsmCommand
impl UnwindSafe for SsmCommand
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