↧
Answer by Raju for Is it possible to add a subdomain to Route53 using the AWS...
Yes, I done using changeResourceRecordSets method.<?phprequire 'vendor/autoload.php';use Aws\Route53\Route53Client;use Aws\Exception\CredentialsException;use...
View ArticleAnswer by Neal Magee for Is it possible to add a subdomain to Route53 using...
Yes, this is possible using the changeResourceRecordSets call, as you already indicated. But it is a bit clumsy since you have to structure it like a batch even if you're changing/creating only one...
View ArticleIs it possible to add a subdomain to Route53 using the AWS PHP SDK?
I am working on a project where we will be creating both subdomains as well as domains in Route53. We are hoping that there is a way to do this programmatically. The SDK for PHP documentation seems a...
View Article