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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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