aws_sdk_ivsrealtime/client/
delete_ingest_configuration.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 [`DeleteIngestConfiguration`](crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`arn(impl Into<String>)`](crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder::set_arn):<br>required: **true**<br><p>ARN of the IngestConfiguration.</p><br>
7    ///   - [`force(bool)`](crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder::force) / [`set_force(Option<bool>)`](crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder::set_force):<br>required: **false**<br><p>Optional field to force deletion of the IngestConfiguration. If this is set to <code>true</code> when a participant is actively publishing, the participant is disconnected from the stage, followed by deletion of the IngestConfiguration. Default: <code>false</code>.</p><br>
8    /// - On success, responds with [`DeleteIngestConfigurationOutput`](crate::operation::delete_ingest_configuration::DeleteIngestConfigurationOutput)
9    /// - On failure, responds with [`SdkError<DeleteIngestConfigurationError>`](crate::operation::delete_ingest_configuration::DeleteIngestConfigurationError)
10    pub fn delete_ingest_configuration(&self) -> crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder {
11        crate::operation::delete_ingest_configuration::builders::DeleteIngestConfigurationFluentBuilder::new(self.handle.clone())
12    }
13}