// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListServiceSpecificCredentials`](crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`user_name(impl Into<String>)`](crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder::user_name) / [`set_user_name(Option<String>)`](crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder::set_user_name):<br>required: **false**<br><p>The name of the user whose service-specific credentials you want information about. If this value is not specified, then the operation assumes the user whose credentials are used to call the operation.</p> <p>This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p><br>
/// - [`service_name(impl Into<String>)`](crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder::service_name) / [`set_service_name(Option<String>)`](crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder::set_service_name):<br>required: **false**<br><p>Filters the returned results to only those for the specified Amazon Web Services service. If not specified, then Amazon Web Services returns service-specific credentials for all services.</p><br>
/// - On success, responds with [`ListServiceSpecificCredentialsOutput`](crate::operation::list_service_specific_credentials::ListServiceSpecificCredentialsOutput) with field(s):
/// - [`service_specific_credentials(Option<Vec::<ServiceSpecificCredentialMetadata>>)`](crate::operation::list_service_specific_credentials::ListServiceSpecificCredentialsOutput::service_specific_credentials): <p>A list of structures that each contain details about a service-specific credential.</p>
/// - On failure, responds with [`SdkError<ListServiceSpecificCredentialsError>`](crate::operation::list_service_specific_credentials::ListServiceSpecificCredentialsError)
pub fn list_service_specific_credentials(
&self,
) -> crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder {
crate::operation::list_service_specific_credentials::builders::ListServiceSpecificCredentialsFluentBuilder::new(self.handle.clone())
}
}