Struct aws_sdk_outposts::client::fluent_builders::ListOutposts
source · pub struct ListOutposts { /* private fields */ }
Expand description
Fluent builder constructing a request to ListOutposts
.
Lists the Outposts for your Amazon Web Services account.
Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
Implementations§
source§impl ListOutposts
impl ListOutposts
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListOutposts, AwsResponseRetryClassifier>, SdkError<ListOutpostsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListOutposts, AwsResponseRetryClassifier>, SdkError<ListOutpostsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListOutpostsOutput, SdkError<ListOutpostsError>>
pub async fn send(
self
) -> Result<ListOutpostsOutput, SdkError<ListOutpostsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListOutpostsPaginator
pub fn into_paginator(self) -> ListOutpostsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum page size.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum page size.
sourcepub fn life_cycle_status_filter(self, input: impl Into<String>) -> Self
pub fn life_cycle_status_filter(self, input: impl Into<String>) -> Self
Appends an item to LifeCycleStatusFilter
.
To override the contents of this collection use set_life_cycle_status_filter
.
Filters the results by the lifecycle status.
sourcepub fn set_life_cycle_status_filter(self, input: Option<Vec<String>>) -> Self
pub fn set_life_cycle_status_filter(self, input: Option<Vec<String>>) -> Self
Filters the results by the lifecycle status.
sourcepub fn availability_zone_filter(self, input: impl Into<String>) -> Self
pub fn availability_zone_filter(self, input: impl Into<String>) -> Self
Appends an item to AvailabilityZoneFilter
.
To override the contents of this collection use set_availability_zone_filter
.
Filters the results by Availability Zone (for example, us-east-1a
).
sourcepub fn set_availability_zone_filter(self, input: Option<Vec<String>>) -> Self
pub fn set_availability_zone_filter(self, input: Option<Vec<String>>) -> Self
Filters the results by Availability Zone (for example, us-east-1a
).
sourcepub fn availability_zone_id_filter(self, input: impl Into<String>) -> Self
pub fn availability_zone_id_filter(self, input: impl Into<String>) -> Self
Appends an item to AvailabilityZoneIdFilter
.
To override the contents of this collection use set_availability_zone_id_filter
.
Filters the results by AZ ID (for example, use1-az1
).
sourcepub fn set_availability_zone_id_filter(self, input: Option<Vec<String>>) -> Self
pub fn set_availability_zone_id_filter(self, input: Option<Vec<String>>) -> Self
Filters the results by AZ ID (for example, use1-az1
).
Trait Implementations§
source§impl Clone for ListOutposts
impl Clone for ListOutposts
source§fn clone(&self) -> ListOutposts
fn clone(&self) -> ListOutposts
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more