#[non_exhaustive]pub struct ListApplicationComponentsInput {
pub application_component_criteria: Option<ApplicationComponentCriteria>,
pub filter_value: Option<String>,
pub sort: Option<SortOrder>,
pub group_id_filter: Option<Vec<Group>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.application_component_criteria: Option<ApplicationComponentCriteria>Criteria for filtering the list of application components.
filter_value: Option<String> Specify the value based on the application component criteria type. For example, if applicationComponentCriteria is set to SERVER_ID and filterValue is set to server1, then ListApplicationComponents returns all the application components running on server1.
sort: Option<SortOrder> Specifies whether to sort by ascending (ASC) or descending (DESC) order.
group_id_filter: Option<Vec<Group>>The group ID specified in to filter on.
next_token: Option<String> The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
max_results: Option<i32>The maximum number of items to include in the response. The maximum value is 100.
Implementations
sourceimpl ListApplicationComponentsInput
impl ListApplicationComponentsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationComponents, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationComponents, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListApplicationComponents>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListApplicationComponentsInput
sourceimpl ListApplicationComponentsInput
impl ListApplicationComponentsInput
sourcepub fn application_component_criteria(
&self
) -> Option<&ApplicationComponentCriteria>
pub fn application_component_criteria(
&self
) -> Option<&ApplicationComponentCriteria>
Criteria for filtering the list of application components.
sourcepub fn filter_value(&self) -> Option<&str>
pub fn filter_value(&self) -> Option<&str>
Specify the value based on the application component criteria type. For example, if applicationComponentCriteria is set to SERVER_ID and filterValue is set to server1, then ListApplicationComponents returns all the application components running on server1.
sourcepub fn sort(&self) -> Option<&SortOrder>
pub fn sort(&self) -> Option<&SortOrder>
Specifies whether to sort by ascending (ASC) or descending (DESC) order.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to include in the response. The maximum value is 100.
Trait Implementations
sourceimpl Clone for ListApplicationComponentsInput
impl Clone for ListApplicationComponentsInput
sourcefn clone(&self) -> ListApplicationComponentsInput
fn clone(&self) -> ListApplicationComponentsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl PartialEq<ListApplicationComponentsInput> for ListApplicationComponentsInput
impl PartialEq<ListApplicationComponentsInput> for ListApplicationComponentsInput
sourcefn eq(&self, other: &ListApplicationComponentsInput) -> bool
fn eq(&self, other: &ListApplicationComponentsInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ListApplicationComponentsInput) -> bool
fn ne(&self, other: &ListApplicationComponentsInput) -> bool
This method tests for !=.
impl StructuralPartialEq for ListApplicationComponentsInput
Auto Trait Implementations
impl RefUnwindSafe for ListApplicationComponentsInput
impl Send for ListApplicationComponentsInput
impl Sync for ListApplicationComponentsInput
impl Unpin for ListApplicationComponentsInput
impl UnwindSafe for ListApplicationComponentsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more