Class: Aws::Route53Resolver::Types::IpAddressUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::IpAddressUpdate
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
In an UpdateResolverEndpoint request, information about an IP address to update.
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.
2655 2656 2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2655 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.
2655 2656 2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2655 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#ipv_6 ⇒ String
The new IPv6 address.
2655 2656 2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2655 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.
2655 2656 2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2655 class IpAddressUpdate < Struct.new( :ip_id, :subnet_id, :ip, :ipv_6) SENSITIVE = [] include Aws::Structure end |