Struct aws_sdk_datasync::input::ListLocationsInput
source · [−]#[non_exhaustive]pub struct ListLocationsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<LocationFilter>>,
}
Expand description
ListLocationsRequest
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.max_results: Option<i32>
The maximum number of locations to return.
next_token: Option<String>
An opaque string that indicates the position at which to begin the next list of locations.
filters: Option<Vec<LocationFilter>>
You can use API filters to narrow down the list of resources returned by ListLocations
. For example, to retrieve all tasks on a specific source location, you can use ListLocations
with filter name LocationType S3
and Operator Equals
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLocations, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLocations, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListLocations
>
Creates a new builder-style object to manufacture ListLocationsInput
The maximum number of locations to return.
An opaque string that indicates the position at which to begin the next list of locations.
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 ListLocationsInput
impl Send for ListLocationsInput
impl Sync for ListLocationsInput
impl Unpin for ListLocationsInput
impl UnwindSafe for ListLocationsInput
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