Struct aws_sdk_elasticsearch::input::ListDomainsForPackageInput [−][src]
#[non_exhaustive]pub struct ListDomainsForPackageInput {
pub package_id: Option<String>,
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Container for request parameters to
operation. ListDomainsForPackage
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.package_id: Option<String>
The package for which to list domains.
max_results: i32
Limits results to a maximum number of domains.
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<ListDomainsForPackage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDomainsForPackage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDomainsForPackage
>
Creates a new builder-style object to manufacture ListDomainsForPackageInput
The package for which to list domains.
Limits results to a maximum number of domains.
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 ListDomainsForPackageInput
impl Send for ListDomainsForPackageInput
impl Sync for ListDomainsForPackageInput
impl Unpin for ListDomainsForPackageInput
impl UnwindSafe for ListDomainsForPackageInput
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