Interface PrivateDnsRecordSet.UpdateStages.WithARecordIPv4Address
-
- All Known Subinterfaces:
PrivateDnsRecordSet.UpdateARecordSet,PrivateDnsRecordSet.UpdateCombined
- Enclosing interface:
- PrivateDnsRecordSet.UpdateStages
public static interface PrivateDnsRecordSet.UpdateStages.WithARecordIPv4AddressThe stage of the A record set update allowing to add or remove A record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrivateDnsRecordSet.UpdateARecordSetwithIPv4Address(String ipv4Address)Creates an A record with the provided IPv4 address in the record set.PrivateDnsRecordSet.UpdateARecordSetwithoutIPv4Address(String ipv4Address)Removes the A record with the provided IPv4 address from the record set.
-
-
-
Method Detail
-
withIPv4Address
PrivateDnsRecordSet.UpdateARecordSet withIPv4Address(String ipv4Address)
Creates an A record with the provided IPv4 address in the record set.- Parameters:
ipv4Address- an IPv4 address- Returns:
- the next stage of the record set update
-
withoutIPv4Address
PrivateDnsRecordSet.UpdateARecordSet withoutIPv4Address(String ipv4Address)
Removes the A record with the provided IPv4 address from the record set.- Parameters:
ipv4Address- an IPv4 address- Returns:
- the next stage of the record set update
-
-