aws-sdk-evs 1.29.0

AWS SDK for Amazon Elastic VMware Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateEipToVlan`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`client_token(impl Into<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::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>
    ///   - [`environment_id(impl Into<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::environment_id) / [`set_environment_id(Option<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::set_environment_id):<br>required: **true**<br><p>A unique ID for the environment containing the VLAN that the Elastic IP address associates with.</p><br>
    ///   - [`vlan_name(impl Into<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::vlan_name) / [`set_vlan_name(Option<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::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>
    ///   - [`allocation_id(impl Into<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::allocation_id) / [`set_allocation_id(Option<String>)`](crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::set_allocation_id):<br>required: **true**<br><p>The Elastic IP address allocation ID.</p><br>
    /// - On success, responds with [`AssociateEipToVlanOutput`](crate::operation::associate_eip_to_vlan::AssociateEipToVlanOutput) with field(s):
    ///   - [`vlan(Option<Vlan>)`](crate::operation::associate_eip_to_vlan::AssociateEipToVlanOutput::vlan): <p>The VLANs that Amazon EVS creates during environment creation.</p>
    /// - On failure, responds with [`SdkError<AssociateEipToVlanError>`](crate::operation::associate_eip_to_vlan::AssociateEipToVlanError)
    pub fn associate_eip_to_vlan(&self) -> crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder {
        crate::operation::associate_eip_to_vlan::builders::AssociateEipToVlanFluentBuilder::new(self.handle.clone())
    }
}