aws-sdk-mediaconnect 0.27.0

AWS SDK for AWS MediaConnect
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`RemoveFlowVpcInterface`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_arn(impl Into<String>)`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::flow_arn) / [`set_flow_arn(Option<String>)`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::set_flow_arn): The flow that you want to remove a VPC interface from.
    ///   - [`vpc_interface_name(impl Into<String>)`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::vpc_interface_name) / [`set_vpc_interface_name(Option<String>)`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::set_vpc_interface_name): The name of the VPC interface that you want to remove.
    /// - On success, responds with [`RemoveFlowVpcInterfaceOutput`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput) with field(s):
    ///   - [`flow_arn(Option<String>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::flow_arn): The ARN of the flow that is associated with the VPC interface you removed.
    ///   - [`non_deleted_network_interface_ids(Option<Vec<String>>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::non_deleted_network_interface_ids): IDs of network interfaces associated with the removed VPC interface that Media Connect was unable to remove.
    ///   - [`vpc_interface_name(Option<String>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::vpc_interface_name): The name of the VPC interface that was removed.
    /// - On failure, responds with [`SdkError<RemoveFlowVpcInterfaceError>`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceError)
    pub fn remove_flow_vpc_interface(
        &self,
    ) -> crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder
    {
        crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::new(self.handle.clone())
    }
}