// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListChannelPlacementGroups`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`cluster_id(impl Into<String>)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::set_cluster_id):<br>required: **true**<br>The ID of the cluster<br>
/// - [`max_results(i32)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::set_max_results):<br>required: **false**<br>The maximum number of items to return.<br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::set_next_token):<br>required: **false**<br>The token to retrieve the next page of results.<br>
/// - On success, responds with [`ListChannelPlacementGroupsOutput`](crate::operation::list_channel_placement_groups::ListChannelPlacementGroupsOutput) with field(s):
/// - [`channel_placement_groups(Option<Vec::<DescribeChannelPlacementGroupSummary>>)`](crate::operation::list_channel_placement_groups::ListChannelPlacementGroupsOutput::channel_placement_groups): An array of ChannelPlacementGroups that exist in the Cluster.
/// - [`next_token(Option<String>)`](crate::operation::list_channel_placement_groups::ListChannelPlacementGroupsOutput::next_token): Token for the next result.
/// - On failure, responds with [`SdkError<ListChannelPlacementGroupsError>`](crate::operation::list_channel_placement_groups::ListChannelPlacementGroupsError)
pub fn list_channel_placement_groups(
&self,
) -> crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder {
crate::operation::list_channel_placement_groups::builders::ListChannelPlacementGroupsFluentBuilder::new(self.handle.clone())
}
}