Struct aws_sdk_ec2::input::AssignIpv6AddressesInput [−][src]
#[non_exhaustive]pub struct AssignIpv6AddressesInput {
pub ipv6_address_count: Option<i32>,
pub ipv6_addresses: Option<Vec<String>>,
pub ipv6_prefix_count: Option<i32>,
pub ipv6_prefixes: Option<Vec<String>>,
pub network_interface_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ipv6_address_count: Option<i32>
The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if specifying specific IPv6 addresses.
ipv6_addresses: Option<Vec<String>>
One or more specific IPv6 addresses to be assigned to the network interface. You can't use this option if you're specifying a number of IPv6 addresses.
ipv6_prefix_count: Option<i32>
The number of IPv6 prefixes that Amazon Web Services automatically assigns to the
network interface. You cannot use this option if you use the Ipv6Prefixes
option.
ipv6_prefixes: Option<Vec<String>>
One or more IPv6 prefixes assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount
option.
network_interface_id: Option<String>
The ID of the network interface.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssignIpv6Addresses, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssignIpv6Addresses, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AssignIpv6Addresses
>
Creates a new builder-style object to manufacture AssignIpv6AddressesInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AssignIpv6AddressesInput
impl Send for AssignIpv6AddressesInput
impl Sync for AssignIpv6AddressesInput
impl Unpin for AssignIpv6AddressesInput
impl UnwindSafe for AssignIpv6AddressesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more