aws_sdk_config/client/describe_organization_conformance_pack_statuses.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeOrganizationConformancePackStatuses`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - On success, responds with [`DescribeOrganizationConformancePackStatusesOutput`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesOutput) with field(s):
11 /// - [`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>
12 /// - [`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>
13 /// - On failure, responds with [`SdkError<DescribeOrganizationConformancePackStatusesError>`](crate::operation::describe_organization_conformance_pack_statuses::DescribeOrganizationConformancePackStatusesError)
14 pub fn describe_organization_conformance_pack_statuses(
15 &self,
16 ) -> crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder {
17 crate::operation::describe_organization_conformance_pack_statuses::builders::DescribeOrganizationConformancePackStatusesFluentBuilder::new(
18 self.handle.clone(),
19 )
20 }
21}