Skip to content

Instantly share code, notes, and snippets.

View Mozart-Alkhateeb's full-sized avatar
💭
Setting Status...

Mozart Al Khateeb Mozart-Alkhateeb

💭
Setting Status...
View GitHub Profile
@Mozart-Alkhateeb
Mozart-Alkhateeb / route53-domain-transfer
Created June 4, 2022 13:56 — forked from amanjuman/route53-domain-transfer
AWS Account to Account Route53 Domain Transfer Cli
# 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"
@Mozart-Alkhateeb
Mozart-Alkhateeb / LocalFunctionsEx1.cs
Created January 23, 2020 13:11
Local Functions Example C#
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
//This function has access Only to its direct children [MakeTextUpperCase, GetName]