#[non_exhaustive]pub struct ListDiscoveredResourcesInput { /* private fields */ }Expand description
Implementations§
source§impl ListDiscoveredResourcesInput
impl ListDiscoveredResourcesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDiscoveredResources, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDiscoveredResources, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDiscoveredResources>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListDiscoveredResourcesInput.
source§impl ListDiscoveredResourcesInput
impl ListDiscoveredResourcesInput
sourcepub fn resource_type(&self) -> Option<&ResourceType>
pub fn resource_type(&self) -> Option<&ResourceType>
The type of resources that you want Config to list in the response.
sourcepub fn resource_ids(&self) -> Option<&[String]>
pub fn resource_ids(&self) -> Option<&[String]>
The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered.
sourcepub fn resource_name(&self) -> Option<&str>
pub fn resource_name(&self) -> Option<&str>
The custom name of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered.
sourcepub fn limit(&self) -> i32
pub fn limit(&self) -> i32
The maximum number of resource identifiers returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default.
sourcepub fn include_deleted_resources(&self) -> bool
pub fn include_deleted_resources(&self) -> bool
Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.
Trait Implementations§
source§impl Clone for ListDiscoveredResourcesInput
impl Clone for ListDiscoveredResourcesInput
source§fn clone(&self) -> ListDiscoveredResourcesInput
fn clone(&self) -> ListDiscoveredResourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDiscoveredResourcesInput
impl Debug for ListDiscoveredResourcesInput
source§impl PartialEq<ListDiscoveredResourcesInput> for ListDiscoveredResourcesInput
impl PartialEq<ListDiscoveredResourcesInput> for ListDiscoveredResourcesInput
source§fn eq(&self, other: &ListDiscoveredResourcesInput) -> bool
fn eq(&self, other: &ListDiscoveredResourcesInput) -> bool
self and other values to be equal, and is used
by ==.