#[non_exhaustive]pub struct ReportInstanceStatusInput {
pub description: Option<String>,
pub dry_run: Option<bool>,
pub end_time: Option<DateTime>,
pub instances: Option<Vec<String>>,
pub reason_codes: Option<Vec<ReportInstanceReasonCodes>>,
pub start_time: Option<DateTime>,
pub status: Option<ReportStatusType>,
}
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.description: Option<String>
Descriptive text about the health state of your instance.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
end_time: Option<DateTime>
The time at which the reported instance health state ended.
instances: Option<Vec<String>>
The instances.
reason_codes: Option<Vec<ReportInstanceReasonCodes>>
The reason codes that describe the health state of your instance.
-
instance-stuck-in-state
: My instance is stuck in a state. -
unresponsive
: My instance is unresponsive. -
not-accepting-credentials
: My instance is not accepting my credentials. -
password-not-available
: A password is not available for my instance. -
performance-network
: My instance is experiencing performance problems that I believe are network related. -
performance-instance-store
: My instance is experiencing performance problems that I believe are related to the instance stores. -
performance-ebs-volume
: My instance is experiencing performance problems that I believe are related to an EBS volume. -
performance-other
: My instance is experiencing performance problems. -
other
: [explain using the description parameter]
start_time: Option<DateTime>
The time at which the reported instance health state began.
status: Option<ReportStatusType>
The status of all instances listed.
Implementations§
source§impl ReportInstanceStatusInput
impl ReportInstanceStatusInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Descriptive text about the health state of your instance.
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The time at which the reported instance health state ended.
sourcepub fn reason_codes(&self) -> Option<&[ReportInstanceReasonCodes]>
pub fn reason_codes(&self) -> Option<&[ReportInstanceReasonCodes]>
The reason codes that describe the health state of your instance.
-
instance-stuck-in-state
: My instance is stuck in a state. -
unresponsive
: My instance is unresponsive. -
not-accepting-credentials
: My instance is not accepting my credentials. -
password-not-available
: A password is not available for my instance. -
performance-network
: My instance is experiencing performance problems that I believe are network related. -
performance-instance-store
: My instance is experiencing performance problems that I believe are related to the instance stores. -
performance-ebs-volume
: My instance is experiencing performance problems that I believe are related to an EBS volume. -
performance-other
: My instance is experiencing performance problems. -
other
: [explain using the description parameter]
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time at which the reported instance health state began.
sourcepub fn status(&self) -> Option<&ReportStatusType>
pub fn status(&self) -> Option<&ReportStatusType>
The status of all instances listed.
source§impl ReportInstanceStatusInput
impl ReportInstanceStatusInput
sourcepub fn builder() -> ReportInstanceStatusInputBuilder
pub fn builder() -> ReportInstanceStatusInputBuilder
Creates a new builder-style object to manufacture ReportInstanceStatusInput
.
Trait Implementations§
source§impl Clone for ReportInstanceStatusInput
impl Clone for ReportInstanceStatusInput
source§fn clone(&self) -> ReportInstanceStatusInput
fn clone(&self) -> ReportInstanceStatusInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReportInstanceStatusInput
impl Debug for ReportInstanceStatusInput
source§impl PartialEq<ReportInstanceStatusInput> for ReportInstanceStatusInput
impl PartialEq<ReportInstanceStatusInput> for ReportInstanceStatusInput
source§fn eq(&self, other: &ReportInstanceStatusInput) -> bool
fn eq(&self, other: &ReportInstanceStatusInput) -> bool
self
and other
values to be equal, and is used
by ==
.