This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initiate Domain Transfer | |
aws route53domains transfer-domain-to-another-aws-account --domain-name yourdomain.tld --account-id 123456789101 | |
# Cancel Domain Transfer | |
aws route53domains cancel-domain-transfer-to-another-aws-account --domain-name yourdomain.tld | |
{ | |
"OperationId": "MNOP-MNOP-MNOP-MNOP-MNOP", | |
"Password": "XYZXYZXYZXYZ" | |
} | |
# Accept Domain Transfer | |
aws route53domains accept-domain-transfer-from-another-aws-account --domain-name yourdomain.tld --password "XYZXYZXYZXYZ" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//This function has access Only to its direct children [MakeTextUpperCase, GetName] |