class Route53 extends AnyRef

Source
Route53.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Route53
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Route53()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _hostedZones: Memoizer0[List[HostedZone]]
    Attributes
    protected
  5. val _recordSets: Memoizer[HostedZone, List[ResourceRecordSet]]
    Attributes
    protected
  6. def aliasExists(dnsNameStart: String)(implicit rSets: List[ResourceRecordSet]): Boolean
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val cacheIsDirty: AtomicBoolean
  9. def clearCaches(): Unit
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. 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

  12. def deleteCnameAlias(alias: String): Boolean

    returns

    true if the alias was found and deleted

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  17. val hostedZones: List[HostedZone]

    **cached**

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def maybeHostedZone(name: String): Option[HostedZone]

    name

    is checked after a dot is appended

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  23. implicit val r53: Route53
  24. implicit val r53Client: AmazonRoute53
  25. def recordSets(hostedZoneName: String): List[ResourceRecordSet]
  26. def recordSets(hostedZone: HostedZone): List[ResourceRecordSet]
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped