// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteChannelPlacementGroup`](crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`channel_placement_group_id(impl Into<String>)`](crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder::channel_placement_group_id) / [`set_channel_placement_group_id(Option<String>)`](crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder::set_channel_placement_group_id):<br>required: **true**<br>The ID of the channel placement group.<br>
/// - [`cluster_id(impl Into<String>)`](crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder::set_cluster_id):<br>required: **true**<br>The ID of the cluster.<br>
/// - On success, responds with [`DeleteChannelPlacementGroupOutput`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::arn): The ARN of this ChannelPlacementGroup. It is automatically assigned when the ChannelPlacementGroup is created.
/// - [`channels(Option<Vec::<String>>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::channels): Used in ListChannelPlacementGroupsResult
/// - [`cluster_id(Option<String>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::cluster_id): The ID of the Cluster that the Node belongs to.
/// - [`id(Option<String>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::id): The ID of the ChannelPlacementGroup. Unique in the AWS account. The ID is the resource-id portion of the ARN.
/// - [`name(Option<String>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::name): The name that you specified for the ChannelPlacementGroup.
/// - [`nodes(Option<Vec::<String>>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::nodes): An array with one item, which is the single Node that is associated with the ChannelPlacementGroup.
/// - [`state(Option<ChannelPlacementGroupState>)`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupOutput::state): The current state of the ChannelPlacementGroup.
/// - On failure, responds with [`SdkError<DeleteChannelPlacementGroupError>`](crate::operation::delete_channel_placement_group::DeleteChannelPlacementGroupError)
pub fn delete_channel_placement_group(
&self,
) -> crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder {
crate::operation::delete_channel_placement_group::builders::DeleteChannelPlacementGroupFluentBuilder::new(self.handle.clone())
}
}