aws_sdk_pinpoint/client/delete_adm_channel.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 [`DeleteAdmChannel`](crate::operation::delete_adm_channel::builders::DeleteAdmChannelFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`application_id(impl Into<String>)`](crate::operation::delete_adm_channel::builders::DeleteAdmChannelFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::delete_adm_channel::builders::DeleteAdmChannelFluentBuilder::set_application_id):<br>required: **true**<br><p>The unique identifier for the application. This identifier is displayed as the <b>Project ID</b> on the Amazon Pinpoint console.</p><br>
7 /// - On success, responds with [`DeleteAdmChannelOutput`](crate::operation::delete_adm_channel::DeleteAdmChannelOutput) with field(s):
8 /// - [`adm_channel_response(Option<AdmChannelResponse>)`](crate::operation::delete_adm_channel::DeleteAdmChannelOutput::adm_channel_response): <p>Provides information about the status and settings of the ADM (Amazon Device Messaging) channel for an application.</p>
9 /// - On failure, responds with [`SdkError<DeleteAdmChannelError>`](crate::operation::delete_adm_channel::DeleteAdmChannelError)
10 pub fn delete_adm_channel(&self) -> crate::operation::delete_adm_channel::builders::DeleteAdmChannelFluentBuilder {
11 crate::operation::delete_adm_channel::builders::DeleteAdmChannelFluentBuilder::new(self.handle.clone())
12 }
13}