#[non_exhaustive]pub struct DescribeInstanceInformationInput {
pub instance_information_filter_list: Option<Vec<InstanceInformationFilter>>,
pub filters: Option<Vec<InstanceInformationStringFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.instance_information_filter_list: Option<Vec<InstanceInformationFilter>>
This is a legacy method. We recommend that you don't use this method. Instead, use the Filters
data type. Filters
enables you to return node information by filtering based on tags applied to managed nodes.
Attempting to use InstanceInformationFilterList
and Filters
leads to an exception error.
filters: Option<Vec<InstanceInformationStringFilter>>
One or more filters. Use a filter to return a more specific list of managed nodes. You can filter based on tags applied to EC2 instances. Use this Filters
data type instead of InstanceInformationFilterList
, which is deprecated.
max_results: Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
next_token: Option<String>
The token for the next set of items to return. (You received this token from a previous call.)
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeInstanceInformation, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeInstanceInformation, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeInstanceInformation
>
Creates a new builder-style object to manufacture DescribeInstanceInformationInput
This is a legacy method. We recommend that you don't use this method. Instead, use the Filters
data type. Filters
enables you to return node information by filtering based on tags applied to managed nodes.
Attempting to use InstanceInformationFilterList
and Filters
leads to an exception error.
One or more filters. Use a filter to return a more specific list of managed nodes. You can filter based on tags applied to EC2 instances. Use this Filters
data type instead of InstanceInformationFilterList
, which is deprecated.
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
The token for the next set of items to return. (You received this token from a previous call.)
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 DescribeInstanceInformationInput
impl Sync for DescribeInstanceInformationInput
impl Unpin for DescribeInstanceInformationInput
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