#[non_exhaustive]pub struct DescribeEnvironmentHealthInput {
pub environment_name: Option<String>,
pub environment_id: Option<String>,
pub attribute_names: Option<Vec<EnvironmentHealthAttribute>>,
}
Expand description
See the example below to learn how to create a request body.
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.environment_name: Option<String>
Specify the environment by name.
You must specify either this or an EnvironmentName, or both.
environment_id: Option<String>
Specify the environment by ID.
You must specify either this or an EnvironmentName, or both.
attribute_names: Option<Vec<EnvironmentHealthAttribute>>
Specify the response elements to return. To retrieve all attributes, set to All
. If no attribute names are specified, returns the name of the environment.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentHealth, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironmentHealth, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeEnvironmentHealth
>
Creates a new builder-style object to manufacture DescribeEnvironmentHealthInput
Specify the environment by name.
You must specify either this or an EnvironmentName, or both.
Specify the environment by ID.
You must specify either this or an EnvironmentName, or both.
Specify the response elements to return. To retrieve all attributes, set to All
. If no attribute names are specified, returns the name of the environment.
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 Send for DescribeEnvironmentHealthInput
impl Sync for DescribeEnvironmentHealthInput
impl Unpin for DescribeEnvironmentHealthInput
impl UnwindSafe for DescribeEnvironmentHealthInput
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