// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteOAuthClientApplication`](crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`aws_account_id(impl Into<String>)`](crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
/// - [`o_auth_client_application_id(impl Into<String>)`](crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder::o_auth_client_application_id) / [`set_o_auth_client_application_id(Option<String>)`](crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder::set_o_auth_client_application_id):<br>required: **true**<br><p>The ID of the OAuthClientApplication that you want to delete.</p><br>
/// - On success, responds with [`DeleteOAuthClientApplicationOutput`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationOutput::arn): <p>The Amazon Resource Name (ARN) of the OAuthClientApplication that you deleted.</p>
/// - [`o_auth_client_application_id(Option<String>)`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationOutput::o_auth_client_application_id): <p>The ID of the OAuthClientApplication. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
/// - [`request_id(Option<String>)`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
/// - [`status(i32)`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationOutput::status): <p>The HTTP status of the request.</p>
/// - On failure, responds with [`SdkError<DeleteOAuthClientApplicationError>`](crate::operation::delete_o_auth_client_application::DeleteOAuthClientApplicationError)
pub fn delete_o_auth_client_application(
&self,
) -> crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder {
crate::operation::delete_o_auth_client_application::builders::DeleteOAuthClientApplicationFluentBuilder::new(self.handle.clone())
}
}