Class: Aws::Route53Resolver::Types::IpAddressUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::IpAddressUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53resolver/types.rb
Overview
In an [UpdateResolverEndpoint] request, information about an IP address to update.
[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip ⇒ String
The new IPv4 address.
-
#ip_id ⇒ String
*Only when removing an IP address from a Resolver endpoint*: The ID of the IP address that you want to remove.
-
#ipv_6 ⇒ String
The new IPv6 address.
-
#subnet_id ⇒ String
The ID of the subnet that includes the IP address that you want to update.
Instance Attribute Details
#ip ⇒ String
The new IPv4 address.
2591 2592 2593 2594 2595 2596 2597 2598 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 2591 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#ip_id ⇒ String
*Only when removing an IP address from a Resolver endpoint*: The ID of the IP address that you want to remove. To get this ID, use [GetResolverEndpoint].
[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html
2591 2592 2593 2594 2595 2596 2597 2598 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 2591 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#ipv_6 ⇒ String
The new IPv6 address.
2591 2592 2593 2594 2595 2596 2597 2598 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 2591 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
The ID of the subnet that includes the IP address that you want to update. To get this ID, use [GetResolverEndpoint].
[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html
2591 2592 2593 2594 2595 2596 2597 2598 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 2591 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |