aws_sdk_config/client/describe_organization_conformance_pack_statuses.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeOrganizationConformancePackStatuses`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`organization_conformance_pack_names(impl Into<String>)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::organization_conformance_pack_names) / [`set_organization_conformance_pack_names(Option<Vec::<String>>)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::set_organization_conformance_pack_names):<br>required: **false**<br><p>The names of organization conformance packs for which you want status details. If you do not specify any names, Config returns details for all your organization conformance packs.</p><br>
/// - [`limit(i32)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of OrganizationConformancePackStatuses returned on each page. If you do no specify a number, Config uses the default. The default is 100.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::set_next_token):<br>required: **false**<br><p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.</p><br>
/// - On success, responds with [`DescribeOrganizationConformancePackStatusesOutput`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesOutput) with field(s):
/// - [`organization_conformance_pack_statuses(Option<Vec::<OrganizationConformancePackStatus>>)`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesOutput::organization_conformance_pack_statuses): <p>A list of <code>OrganizationConformancePackStatus</code> objects.</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesOutput::next_token): <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.</p>
/// - On failure, responds with [`SdkError<DescribeOrganizationConformancePackStatusesError>`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesError)
pub fn describe_organization_conformance_pack_statuses(
&self,
) -> crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder {
crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::new(
self.handle.clone(),
)
}
}