#[non_exhaustive]pub struct EnvironmentInfoDescription {
pub info_type: Option<EnvironmentInfoType>,
pub ec2_instance_id: Option<String>,
pub sample_timestamp: Option<DateTime>,
pub message: Option<String>,
}
Expand description
The information retrieved from the Amazon EC2 instances.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.info_type: Option<EnvironmentInfoType>
The type of information retrieved.
ec2_instance_id: Option<String>
The Amazon EC2 Instance ID for this information.
sample_timestamp: Option<DateTime>
The time stamp when this information was 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.
Implementations
The type of information retrieved.
The Amazon EC2 Instance ID for this information.
The time stamp when this information was retrieved.
Creates a new builder-style object to manufacture EnvironmentInfoDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for EnvironmentInfoDescription
impl Send for EnvironmentInfoDescription
impl Sync for EnvironmentInfoDescription
impl Unpin for EnvironmentInfoDescription
impl UnwindSafe for EnvironmentInfoDescription
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more