nice-father-44210
02/14/2022, 4:43 PMaws.route53.ResolverEndpoint
, if I pass a subnet_id
into the ResolverEndpointIpAddressArgs
constructor, is there a way for me to obtain an Output
that represents the IP address that AWS assigned to the endpoint? Thanks in advance.ip_addresses
attribute has the discrete IPs:
resolver_endpoints.ip_addresses.apply(
lambda ip_objs: map(lambda ip_obj: ip_obj.ip, ip_objs)
)
I would maybe update the docs to reflect that ip_addresses
is not only an input but also an output.