This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.AWS.Route53.
Summary
Create a new hosted zone. When you create a zone, its initial status is PENDING. This means that it is not yet available on all DNS servers.
The status of the zone changes to INSYNC when the NS and SOA records are available on all Route 53 DNS servers.
Syntax
public static Task<string> CreateHostedZone(this ICakeContext context, string domain, Route53Settings settings)
Attributes
Type |
Description |
AsyncStateMachineAttribute |
|
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The cake context. |
domain |
string |
The name of the domain |
settings |
Route53Settings |
The Route53Settings required to connect to Route53. |
Return Value
Type |
Description |
Task<string> |
|