Struct aws_sdk_ec2::input::AllocateAddressInput [−][src]
#[non_exhaustive]pub struct AllocateAddressInput {
pub domain: Option<DomainType>,
pub address: Option<String>,
pub public_ipv4_pool: Option<String>,
pub network_border_group: Option<String>,
pub customer_owned_ipv4_pool: Option<String>,
pub dry_run: Option<bool>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}
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.domain: Option<DomainType>
Indicates whether the Elastic IP address is for use with instances in a VPC or instances in EC2-Classic.
Default: If the Region supports EC2-Classic, the default is standard
. Otherwise, the default
is vpc
.
address: Option<String>
[EC2-VPC] The Elastic IP address to recover or an IPv4 address from an address pool.
public_ipv4_pool: Option<String>
The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool.
To specify a specific address from the address pool, use the Address
parameter instead.
network_border_group: Option<String>
A unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.
Use DescribeAvailabilityZones to view the network border groups.
You cannot use a network border group with EC2 Classic. If you attempt this operation on EC2 Classic,
you receive an InvalidParameterCombination
error.
customer_owned_ipv4_pool: Option<String>
The ID of a customer-owned address pool. Use this parameter to let Amazon EC2 select an address from the address pool. Alternatively, specify a specific address from the address pool.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
tag_specifications: Option<Vec<TagSpecification>>
The tags to assign to the Elastic IP address.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AllocateAddress, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AllocateAddress, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AllocateAddress
>
Creates a new builder-style object to manufacture AllocateAddressInput
Indicates whether the Elastic IP address is for use with instances in a VPC or instances in EC2-Classic.
Default: If the Region supports EC2-Classic, the default is standard
. Otherwise, the default
is vpc
.
[EC2-VPC] The Elastic IP address to recover or an IPv4 address from an address pool.
The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool.
To specify a specific address from the address pool, use the Address
parameter instead.
A unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.
Use DescribeAvailabilityZones to view the network border groups.
You cannot use a network border group with EC2 Classic. If you attempt this operation on EC2 Classic,
you receive an InvalidParameterCombination
error.
The ID of a customer-owned address pool. Use this parameter to let Amazon EC2 select an address from the address pool. Alternatively, specify a specific address from the address pool.
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
The tags to assign to the Elastic IP address.
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 AllocateAddressInput
impl Send for AllocateAddressInput
impl Sync for AllocateAddressInput
impl Unpin for AllocateAddressInput
impl UnwindSafe for AllocateAddressInput
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