// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListOpenIDConnectProviderTags`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`open_id_connect_provider_arn(impl Into<String>)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::open_id_connect_provider_arn) / [`set_open_id_connect_provider_arn(Option<String>)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::set_open_id_connect_provider_arn):<br>required: **true**<br><p>The ARN of the OpenID Connect (OIDC) identity provider whose tags you want to see.</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>
/// - [`marker(impl Into<String>)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::set_marker):<br>required: **false**<br><p>Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to indicate where the next call should start.</p><br>
/// - [`max_items(i32)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::set_max_items):<br>required: **false**<br><p>Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is <code>true</code>.</p> <p>If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the <code>IsTruncated</code> response element returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells the service where to continue from.</p><br>
/// - On success, responds with [`ListOpenIdConnectProviderTagsOutput`](crate::operation::list_open_id_connect_provider_tags::ListOpenIdConnectProviderTagsOutput) with field(s):
/// - [`tags(Vec::<Tag>)`](crate::operation::list_open_id_connect_provider_tags::ListOpenIdConnectProviderTagsOutput::tags): <p>The list of tags that are currently attached to the OpenID Connect (OIDC) identity provider. Each tag consists of a key name and an associated value. If no tags are attached to the specified resource, the response contains an empty list.</p>
/// - [`is_truncated(bool)`](crate::operation::list_open_id_connect_provider_tags::ListOpenIdConnectProviderTagsOutput::is_truncated): <p>A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the <code>Marker</code> request parameter to retrieve more items. Note that IAM might return fewer than the <code>MaxItems</code> number of results even when there are more results available. We recommend that you check <code>IsTruncated</code> after every call to ensure that you receive all your results.</p>
/// - [`marker(Option<String>)`](crate::operation::list_open_id_connect_provider_tags::ListOpenIdConnectProviderTagsOutput::marker): <p>When <code>IsTruncated</code> is <code>true</code>, this element is present and contains the value to use for the <code>Marker</code> parameter in a subsequent pagination request.</p>
/// - On failure, responds with [`SdkError<ListOpenIDConnectProviderTagsError>`](crate::operation::list_open_id_connect_provider_tags::ListOpenIDConnectProviderTagsError)
pub fn list_open_id_connect_provider_tags(
&self,
) -> crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder {
crate::operation::list_open_id_connect_provider_tags::builders::ListOpenIDConnectProviderTagsFluentBuilder::new(self.handle.clone())
}
}