aws_sdk_evs/client/disassociate_eip_from_vlan.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 [`DisassociateEipFromVlan`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`client_token(impl Into<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::set_client_token):<br>required: **false**<br><note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the environment creation request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p><br>
7 /// - [`environment_id(impl Into<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::set_environment_id):<br>required: **true**<br><p>A unique ID for the environment containing the VLAN that the Elastic IP address disassociates from.</p><br>
8 /// - [`vlan_name(impl Into<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::vlan_name) / [`set_vlan_name(Option<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::set_vlan_name):<br>required: **true**<br><p>The name of the VLAN. <code>hcx</code> is the only accepted VLAN name at this time.</p><br>
9 /// - [`association_id(impl Into<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::set_association_id):<br>required: **true**<br><p>A unique ID for the Elastic IP address association.</p><br>
10 /// - On success, responds with [`DisassociateEipFromVlanOutput`](crate::operation::disassociate_eip_from_vlan::DisassociateEipFromVlanOutput) with field(s):
11 /// - [`vlan(Option<Vlan>)`](crate::operation::disassociate_eip_from_vlan::DisassociateEipFromVlanOutput::vlan): <p>The VLANs that Amazon EVS creates during environment creation.</p>
12 /// - On failure, responds with [`SdkError<DisassociateEipFromVlanError>`](crate::operation::disassociate_eip_from_vlan::DisassociateEipFromVlanError)
13 pub fn disassociate_eip_from_vlan(&self) -> crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder {
14 crate::operation::disassociate_eip_from_vlan::builders::DisassociateEipFromVlanFluentBuilder::new(self.handle.clone())
15 }
16}