Struct aws_sdk_elasticsearch::input::ListPackagesForDomainInput [−][src]
#[non_exhaustive]pub struct ListPackagesForDomainInput {
pub domain_name: Option<String>,
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Container for request parameters to
operation. ListPackagesForDomain
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.domain_name: Option<String>
The name of the domain for which you want to list associated packages.
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<ListPackagesForDomain, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPackagesForDomain, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListPackagesForDomain
>
Creates a new builder-style object to manufacture ListPackagesForDomainInput
The name of the domain for which you want to list associated packages.
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 ListPackagesForDomainInput
impl Send for ListPackagesForDomainInput
impl Sync for ListPackagesForDomainInput
impl Unpin for ListPackagesForDomainInput
impl UnwindSafe for ListPackagesForDomainInput
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