#[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
sourceimpl DescribeEnvironmentHealthInput
impl DescribeEnvironmentHealthInput
sourcepub 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEnvironmentHealthInput
sourceimpl DescribeEnvironmentHealthInput
impl DescribeEnvironmentHealthInput
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
Specify the environment by name.
You must specify either this or an EnvironmentName, or both.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
Specify the environment by ID.
You must specify either this or an EnvironmentName, or both.
sourcepub fn attribute_names(&self) -> Option<&[EnvironmentHealthAttribute]>
pub fn attribute_names(&self) -> Option<&[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.
Trait Implementations
sourceimpl Clone for DescribeEnvironmentHealthInput
impl Clone for DescribeEnvironmentHealthInput
sourcefn clone(&self) -> DescribeEnvironmentHealthInput
fn clone(&self) -> DescribeEnvironmentHealthInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl PartialEq<DescribeEnvironmentHealthInput> for DescribeEnvironmentHealthInput
impl PartialEq<DescribeEnvironmentHealthInput> for DescribeEnvironmentHealthInput
sourcefn eq(&self, other: &DescribeEnvironmentHealthInput) -> bool
fn eq(&self, other: &DescribeEnvironmentHealthInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeEnvironmentHealthInput) -> bool
fn ne(&self, other: &DescribeEnvironmentHealthInput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeEnvironmentHealthInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeEnvironmentHealthInput
impl Send for DescribeEnvironmentHealthInput
impl Sync for DescribeEnvironmentHealthInput
impl Unpin for DescribeEnvironmentHealthInput
impl UnwindSafe for DescribeEnvironmentHealthInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more