Struct aws_sdk_config::input::ListDiscoveredResourcesInput
source · [−]#[non_exhaustive]pub struct ListDiscoveredResourcesInput {
pub resource_type: Option<ResourceType>,
pub resource_ids: Option<Vec<String>>,
pub resource_name: Option<String>,
pub limit: i32,
pub include_deleted_resources: bool,
pub next_token: Option<String>,
}Expand description
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.resource_type: Option<ResourceType>The type of resources that you want Config to list in the response.
resource_ids: Option<Vec<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.
resource_name: Option<String>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.
limit: i32The 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.
include_deleted_resources: boolSpecifies whether Config includes deleted resources in the results. By default, deleted resources are not included.
next_token: Option<String>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDiscoveredResources, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDiscoveredResources, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDiscoveredResources>
Creates a new builder-style object to manufacture ListDiscoveredResourcesInput
The type of resources that you want Config to list in the response.
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.
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.
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.
Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included.
The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.
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 Send for ListDiscoveredResourcesInput
impl Sync for ListDiscoveredResourcesInput
impl Unpin for ListDiscoveredResourcesInput
impl UnwindSafe for ListDiscoveredResourcesInput
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