pub struct EnvironmentInfoDescription {
pub ec_2_instance_id: Option<String>,
pub info_type: Option<String>,
pub message: Option<String>,
pub sample_timestamp: Option<String>,
}
Expand description
The information retrieved from the Amazon EC2 instances.
Fields§
§ec_2_instance_id: Option<String>
The Amazon EC2 Instance ID for this information.
info_type: Option<String>
The type of information retrieved.
message: Option<String>
The retrieved information. Currently contains a presigned Amazon S3 URL. The files are deleted after 15 minutes.
Anyone in possession of this URL can access the files before they are deleted. Make the URL available only to trusted parties.
sample_timestamp: Option<String>
The time stamp when this information was retrieved.
Trait Implementations§
Source§impl Clone for EnvironmentInfoDescription
impl Clone for EnvironmentInfoDescription
Source§fn clone(&self) -> EnvironmentInfoDescription
fn clone(&self) -> EnvironmentInfoDescription
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 moreSource§impl Debug for EnvironmentInfoDescription
impl Debug for EnvironmentInfoDescription
Source§impl Default for EnvironmentInfoDescription
impl Default for EnvironmentInfoDescription
Source§fn default() -> EnvironmentInfoDescription
fn default() -> EnvironmentInfoDescription
Returns the “default value” for a type. Read more
impl StructuralPartialEq for EnvironmentInfoDescription
Auto Trait Implementations§
impl Freeze for EnvironmentInfoDescription
impl RefUnwindSafe for EnvironmentInfoDescription
impl Send for EnvironmentInfoDescription
impl Sync for EnvironmentInfoDescription
impl Unpin for EnvironmentInfoDescription
impl UnwindSafe for EnvironmentInfoDescription
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