class Route53 extends AnyRef
- Source
- Route53.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Route53
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Route53()
Value Members
- def aliasExists(dnsNameStart: String)(implicit rSets: List[ResourceRecordSet]): Boolean
- val cacheIsDirty: AtomicBoolean
- def clearCaches(): Unit
-
def
createCnameAlias(hostedZoneName: String, dnsName: String, cname: String, routingPolicy: String = "Simple", ttl: Long = 60L): Boolean
- hostedZoneName
such as "scalacourses.com" (a trailing period will be appended as required)
- dnsName
goes in the Name field, and is concatenated with hostedZoneName (so "test" is interpreted to mean "test.scalacourses.com")
- cname
external resource to link to ("xxx.herokuapp.com.") - note the trailing period, might not be necessary
- routingPolicy
not used yet
- ttl
time to live, in seconds
-
def
deleteCnameAlias(alias: String): Boolean
- returns
true if the alias was found and deleted
-
val
hostedZones: List[HostedZone]
**cached**
-
def
maybeHostedZone(name: String): Option[HostedZone]
- name
is checked after a dot is appended
- implicit val r53: Route53
- implicit val r53Client: AmazonRoute53
- def recordSets(hostedZoneName: String): List[ResourceRecordSet]
- def recordSets(hostedZone: HostedZone): List[ResourceRecordSet]