Creates an IPAM prefix list resolver
Source:R/ec2_operations.R
ec2_create_ipam_prefix_list_resolver.RdCreates an IPAM prefix list resolver.
See https://www.paws-r-sdk.com/docs/ec2_create_ipam_prefix_list_resolver/ for full documentation.
Usage
ec2_create_ipam_prefix_list_resolver(
DryRun = NULL,
IpamId,
Description = NULL,
AddressFamily,
Rules = NULL,
TagSpecifications = NULL,
ClientToken = NULL
)Arguments
- DryRun
A check for 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 isUnauthorizedOperation.- IpamId
[required] The ID of the IPAM that will serve as the source of the IP address database for CIDR selection. The IPAM must be in the Advanced tier to use this feature.
- Description
A description for the IPAM prefix list resolver to help you identify its purpose and configuration.
- AddressFamily
[required] The address family for the IPAM prefix list resolver. Valid values are
ipv4andipv6. You must create separate resolvers for IPv4 and IPv6 CIDRs as they cannot be mixed in the same resolver.- Rules
The CIDR selection rules for the resolver.
CIDR selection rules define the business logic for selecting CIDRs from IPAM. If a CIDR matches any of the rules, it will be included. If a rule has multiple conditions, the CIDR has to match every condition of that rule. You can create a prefix list resolver without any CIDR selection rules, but it will generate empty versions (containing no CIDRs) until you add rules.
The tags to apply to the IPAM prefix list resolver during creation. Tags help you organize and manage your Amazon Web Services resources.
- ClientToken
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.