Struct aws_sdk_ec2::input::ReportInstanceStatusInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReportInstanceStatus, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReportInstanceStatus, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ReportInstanceStatus
>
Creates a new builder-style object to manufacture ReportInstanceStatusInput
Descriptive text about the health state of your instance.
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
.
The time at which the reported instance health state ended.
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]
The time at which the reported instance health state began.
The status of all instances listed.
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 ReportInstanceStatusInput
impl Send for ReportInstanceStatusInput
impl Sync for ReportInstanceStatusInput
impl Unpin for ReportInstanceStatusInput
impl UnwindSafe for ReportInstanceStatusInput
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