| 12345678910111213 |
- <?php
- namespace MGModule\DNSManager2\mgLibs\custom\dns\submodules\AWSRoute53;
- class AWSRoute53ResponseMessages
- {
- public static $messages = array(
- "RRSet with DNS name {rname} is not permitted in zone {dname}" => "This record type with name {rname} cannot be created in zone {dname}",
- "Invalid Resource Record: FATAL problem: {code} {value} encountered with {ip}" => "Invalid Resource Record{value}",
- 'Tried to create an alias that targets {ip}, type {type} in zone {id}, but the alias target name does not lie within the target zone' =>
- 'Tried to create an alias that targets {ip}, but the alias target name does not lie within the target zone'
- );
- }
|