IRoute53Manager Interface

Summary

Provides a client for making API requests to Amazon Route 53.
Assembly
Cake.AWS.Route53.dll
Namespace
Cake.AWS.Route53
Implementing Types
graph BT Type["IRoute53Manager"] class Type type-node Implementing0["Route53Manager"]-.->Type click Implementing0 "/api/Cake.AWS.Route53/Route53Manager"

Syntax

public interface IRoute53Manager

Methods

Name Value Summary
CreateHostedZone(string, string, VPCRegion, Route53Settings, CancellationToken) Task<string>
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.
CreateResourceRecordSet(string, string, RRType, string, long, Route53Settings, CancellationToken) Task<string>
Create or change a DNS record for a hosted zone.
DeleteHostedZone(string, Route53Settings, CancellationToken) Task<bool>
Delete a hosted zone.
DeleteResourceRecordSet(string, string, RRType, string, long, Route53Settings, CancellationToken) Task<string>
Delete a DNS record for a hosted zone.
GetHostedZone(string, Route53Settings, CancellationToken) Task<HostedZone>
Retrieve the hosted zone for a specific domain.
GetHostedZones(Route53Settings, CancellationToken) Task<IList<HostedZone>>
Retrieve a list of your hosted zones.
GetResourceRecordSets(string, Route53Settings, CancellationToken) Task<IList<ResourceRecordSet>>
To retrieve a list of record sets for a particular hosted zone.

Extension Methods

Name Value Summary
Dump<IRoute53Manager>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<IRoute53Manager>(IRoute53Manager[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<IRoute53Manager>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<IRoute53Manager>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<IRoute53Manager>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<IRoute53Manager>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin