// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListIntegratedResources`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`agent_space_id(impl Into<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::set_agent_space_id):<br>required: **true**<br><p>The unique identifier of the agent space to list integrated resources for.</p><br>
/// - [`integration_id(impl Into<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::integration_id) / [`set_integration_id(Option<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::set_integration_id):<br>required: **false**<br><p>The unique identifier of the integration to filter by.</p><br>
/// - [`resource_type(ResourceType)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::resource_type) / [`set_resource_type(Option<ResourceType>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::set_resource_type):<br>required: **false**<br><p>The type of resource to filter by.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.</p><br>
/// - [`max_results(i32)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call.</p><br>
/// - On success, responds with [`ListIntegratedResourcesOutput`](crate::operation::list_integrated_resources::ListIntegratedResourcesOutput) with field(s):
/// - [`integrated_resource_summaries(Vec::<IntegratedResourceSummary>)`](crate::operation::list_integrated_resources::ListIntegratedResourcesOutput::integrated_resource_summaries): <p>The list of integrated resource summaries.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_integrated_resources::ListIntegratedResourcesOutput::next_token): <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.</p>
/// - On failure, responds with [`SdkError<ListIntegratedResourcesError>`](crate::operation::list_integrated_resources::ListIntegratedResourcesError)
pub fn list_integrated_resources(&self) -> crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder {
crate::operation::list_integrated_resources::builders::ListIntegratedResourcesFluentBuilder::new(self.handle.clone())
}
}