Struct aws_sdk_proton::input::ListServiceInstancesInput
source · #[non_exhaustive]pub struct ListServiceInstancesInput { /* private fields */ }Implementations§
source§impl ListServiceInstancesInput
impl ListServiceInstancesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListServiceInstances, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListServiceInstances, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListServiceInstances>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListServiceInstancesInput.
source§impl ListServiceInstancesInput
impl ListServiceInstancesInput
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service that the service instance belongs to.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that indicates the location of the next service in the array of service instances, after the list of service instances that was previously requested.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of service instances to list.
sourcepub fn filters(&self) -> Option<&[ListServiceInstancesFilter]>
pub fn filters(&self) -> Option<&[ListServiceInstancesFilter]>
An array of filtering criteria that scope down the result list. By default, all service instances in the Amazon Web Services account are returned.
sourcepub fn sort_by(&self) -> Option<&ListServiceInstancesSortBy>
pub fn sort_by(&self) -> Option<&ListServiceInstancesSortBy>
The field that the result list is sorted by.
When you choose to sort by serviceName, service instances within each service are sorted by service instance name.
Default: serviceName
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Result list sort order.
Default: ASCENDING
Trait Implementations§
source§impl Clone for ListServiceInstancesInput
impl Clone for ListServiceInstancesInput
source§fn clone(&self) -> ListServiceInstancesInput
fn clone(&self) -> ListServiceInstancesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListServiceInstancesInput
impl Debug for ListServiceInstancesInput
source§impl PartialEq<ListServiceInstancesInput> for ListServiceInstancesInput
impl PartialEq<ListServiceInstancesInput> for ListServiceInstancesInput
source§fn eq(&self, other: &ListServiceInstancesInput) -> bool
fn eq(&self, other: &ListServiceInstancesInput) -> bool
self and other values to be equal, and is used
by ==.