// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeHsmClientCertificates`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`hsm_client_certificate_identifier(impl Into<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::hsm_client_certificate_identifier) / [`set_hsm_client_certificate_identifier(Option<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::set_hsm_client_certificate_identifier):<br>required: **false**<br><p>The identifier of a specific HSM client certificate for which you want information. If no identifier is specified, information is returned for all HSM client certificates owned by your Amazon Web Services account.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.</p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::set_marker):<br>required: **false**<br><p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <code>DescribeHsmClientCertificates</code> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request.</p><br>
/// - [`tag_keys(impl Into<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::tag_keys) / [`set_tag_keys(Option<Vec::<String>>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::set_tag_keys):<br>required: **false**<br><p>A tag key or keys for which you want to return all matching HSM client certificates that are associated with the specified key or keys. For example, suppose that you have HSM client certificates that are tagged with keys called <code>owner</code> and <code>environment</code>. If you specify both of these tag keys in the request, Amazon Redshift returns a response with the HSM client certificates that have either or both of these tag keys associated with them.</p><br>
/// - [`tag_values(impl Into<String>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::tag_values) / [`set_tag_values(Option<Vec::<String>>)`](crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::set_tag_values):<br>required: **false**<br><p>A tag value or values for which you want to return all matching HSM client certificates that are associated with the specified tag value or values. For example, suppose that you have HSM client certificates that are tagged with values called <code>admin</code> and <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift returns a response with the HSM client certificates that have either or both of these tag values associated with them.</p><br>
/// - On success, responds with [`DescribeHsmClientCertificatesOutput`](crate::operation::describe_hsm_client_certificates::DescribeHsmClientCertificatesOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_hsm_client_certificates::DescribeHsmClientCertificatesOutput::marker): <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request.</p>
/// - [`hsm_client_certificates(Option<Vec::<HsmClientCertificate>>)`](crate::operation::describe_hsm_client_certificates::DescribeHsmClientCertificatesOutput::hsm_client_certificates): <p>A list of the identifiers for one or more HSM client certificates used by Amazon Redshift clusters to store and retrieve database encryption keys in an HSM.</p>
/// - On failure, responds with [`SdkError<DescribeHsmClientCertificatesError>`](crate::operation::describe_hsm_client_certificates::DescribeHsmClientCertificatesError)
pub fn describe_hsm_client_certificates(
&self,
) -> crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder {
crate::operation::describe_hsm_client_certificates::builders::DescribeHsmClientCertificatesFluentBuilder::new(self.handle.clone())
}
}