aws-sdk-mediaconnect 1.109.0

AWS SDK for AWS MediaConnect
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 [`DeleteRouterNetworkInterface`](crate::operation::delete_router_network_interface::builders::DeleteRouterNetworkInterfaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::delete_router_network_interface::builders::DeleteRouterNetworkInterfaceFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_router_network_interface::builders::DeleteRouterNetworkInterfaceFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the router network interface that you want to delete.</p><br>
    /// - On success, responds with [`DeleteRouterNetworkInterfaceOutput`](crate::operation::delete_router_network_interface::DeleteRouterNetworkInterfaceOutput) with field(s):
    ///   - [`arn(String)`](crate::operation::delete_router_network_interface::DeleteRouterNetworkInterfaceOutput::arn): <p>The ARN of the deleted router network interface.</p>
    ///   - [`name(String)`](crate::operation::delete_router_network_interface::DeleteRouterNetworkInterfaceOutput::name): <p>The name of the deleted router network interface.</p>
    ///   - [`state(RouterNetworkInterfaceState)`](crate::operation::delete_router_network_interface::DeleteRouterNetworkInterfaceOutput::state): <p>The current state of the deleted router network interface, indicating where it is in the deletion process.</p>
    /// - On failure, responds with [`SdkError<DeleteRouterNetworkInterfaceError>`](crate::operation::delete_router_network_interface::DeleteRouterNetworkInterfaceError)
    pub fn delete_router_network_interface(
        &self,
    ) -> crate::operation::delete_router_network_interface::builders::DeleteRouterNetworkInterfaceFluentBuilder {
        crate::operation::delete_router_network_interface::builders::DeleteRouterNetworkInterfaceFluentBuilder::new(self.handle.clone())
    }
}