aws-sdk-medialive 1.83.0

AWS SDK for AWS Elemental MediaLive
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchDelete`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`channel_ids(impl Into<String>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::channel_ids) / [`set_channel_ids(Option<Vec::<String>>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::set_channel_ids):<br>required: **false**<br>List of channel IDs<br>
    ///   - [`input_ids(impl Into<String>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::input_ids) / [`set_input_ids(Option<Vec::<String>>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::set_input_ids):<br>required: **false**<br>List of input IDs<br>
    ///   - [`input_security_group_ids(impl Into<String>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::input_security_group_ids) / [`set_input_security_group_ids(Option<Vec::<String>>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::set_input_security_group_ids):<br>required: **false**<br>List of input security group IDs<br>
    ///   - [`multiplex_ids(impl Into<String>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::multiplex_ids) / [`set_multiplex_ids(Option<Vec::<String>>)`](crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::set_multiplex_ids):<br>required: **false**<br>List of multiplex IDs<br>
    /// - On success, responds with [`BatchDeleteOutput`](crate::operation::batch_delete::BatchDeleteOutput) with field(s):
    ///   - [`failed(Option<Vec::<BatchFailedResultModel>>)`](crate::operation::batch_delete::BatchDeleteOutput::failed): List of failed operations
    ///   - [`successful(Option<Vec::<BatchSuccessfulResultModel>>)`](crate::operation::batch_delete::BatchDeleteOutput::successful): List of successful operations
    /// - On failure, responds with [`SdkError<BatchDeleteError>`](crate::operation::batch_delete::BatchDeleteError)
    pub fn batch_delete(&self) -> crate::operation::batch_delete::builders::BatchDeleteFluentBuilder {
        crate::operation::batch_delete::builders::BatchDeleteFluentBuilder::new(self.handle.clone())
    }
}