Skip to content

route53.createHostedZone

jordanryanmoore edited this page May 11, 2011 · 8 revisions

References

Example Request

{
  name: "example.com",
  callerReference: "myUniqueIdentifier",
  config: { // optional
    comment: "This is my first hosted zone.", // optional
  },
}

Example Response

{
  requestId: "647cd254-e0d1-44a9-af61-1d6d86ea6b77",
  hostedZone: {
    id: "/hostedzone/Z1PA6795UKMFR9",
    name: "example.com.",
    callerReference: "myUniqueIdentifier",
    config: { // optional
      comment: "This is my first hosted zone.", // optional
    },
  },
  changeInfo: {
    id: "/change/C1PA6795UKMFR9",
    status: "PENDING",
    submittedAt: new Date("2010-09-10T01:36:41.958Z"),
  },
  nameServers: [
    "ns-01.awsdns-00.com",
    "ns-500.awsdns-11.net",
    "ns-1112.awsdns-31.org",
    "ns-1600.awsdns-27.co.uk",
  ],
}
Clone this wiki locally