aws_sdk_mediaconnect/client/remove_flow_vpc_interface.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 [`RemoveFlowVpcInterface`](crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the flow that you want to remove a VPC interface from.</p><br>
7 /// - [`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):<br>required: **true**<br><p>The name of the VPC interface that you want to remove.</p><br>
8 /// - On success, responds with [`RemoveFlowVpcInterfaceOutput`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput) with field(s):
9 /// - [`flow_arn(Option<String>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::flow_arn): <p>The ARN of the flow that is associated with the VPC interface you removed.</p>
10 /// - [`non_deleted_network_interface_ids(Option<Vec::<String>>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::non_deleted_network_interface_ids): <p>IDs of network interfaces associated with the removed VPC interface that MediaConnect was unable to remove.</p>
11 /// - [`vpc_interface_name(Option<String>)`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceOutput::vpc_interface_name): <p>The name of the VPC interface that was removed.</p>
12 /// - On failure, responds with [`SdkError<RemoveFlowVpcInterfaceError>`](crate::operation::remove_flow_vpc_interface::RemoveFlowVpcInterfaceError)
13 pub fn remove_flow_vpc_interface(&self) -> crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder {
14 crate::operation::remove_flow_vpc_interface::builders::RemoveFlowVpcInterfaceFluentBuilder::new(self.handle.clone())
15 }
16}