aws_sdk_connect/client/search_security_profiles.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`SearchSecurityProfiles`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
/// - [`max_results(i32)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
/// - [`search_criteria(SecurityProfileSearchCriteria)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::search_criteria) / [`set_search_criteria(Option<SecurityProfileSearchCriteria>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::set_search_criteria):<br>required: **false**<br><p>The search criteria to be used to return security profiles.</p><note> <p>The <code>name</code> field support "contains" queries with a minimum of 2 characters and maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.</p> </note> <note> <p>The currently supported value for <code>FieldName</code>: <code>name</code></p> </note><br>
/// - [`search_filter(SecurityProfilesSearchFilter)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::search_filter) / [`set_search_filter(Option<SecurityProfilesSearchFilter>)`](crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::set_search_filter):<br>required: **false**<br><p>Filters to be applied to search results.</p><br>
/// - On success, responds with [`SearchSecurityProfilesOutput`](crate::operation::search_security_profiles::SearchSecurityProfilesOutput) with field(s):
/// - [`security_profiles(Option<Vec::<SecurityProfileSearchSummary>>)`](crate::operation::search_security_profiles::SearchSecurityProfilesOutput::security_profiles): <p>Information about the security profiles.</p>
/// - [`next_token(Option<String>)`](crate::operation::search_security_profiles::SearchSecurityProfilesOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
/// - [`approximate_total_count(Option<i64>)`](crate::operation::search_security_profiles::SearchSecurityProfilesOutput::approximate_total_count): <p>The total number of security profiles which matched your search query.</p>
/// - On failure, responds with [`SdkError<SearchSecurityProfilesError>`](crate::operation::search_security_profiles::SearchSecurityProfilesError)
pub fn search_security_profiles(&self) -> crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder {
crate::operation::search_security_profiles::builders::SearchSecurityProfilesFluentBuilder::new(self.handle.clone())
}
}