Struct aws_sdk_elasticsearch::input::DescribePackagesInput [−][src]
#[non_exhaustive]pub struct DescribePackagesInput {
pub filters: Option<Vec<DescribePackagesFilter>>,
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Container for request parameters to
operation. DescribePackage
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.filters: Option<Vec<DescribePackagesFilter>>
Only returns packages that match the DescribePackagesFilterList
values.
max_results: i32
Limits results to a maximum number of packages.
next_token: Option<String>
Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribePackages, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribePackages, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribePackages
>
Creates a new builder-style object to manufacture DescribePackagesInput
Only returns packages that match the DescribePackagesFilterList
values.
Limits results to a maximum number of packages.
Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
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 DescribePackagesInput
impl Send for DescribePackagesInput
impl Sync for DescribePackagesInput
impl Unpin for DescribePackagesInput
impl UnwindSafe for DescribePackagesInput
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