Packages

case class Template(Description: Option[String] = None, Parameters: Option[Seq[Parameter]] = None, Conditions: Option[Seq[Condition]] = None, Mappings: Option[Seq[Mapping[_]]] = None, Resources: Seq[Resource[_]], Routables: Option[Seq[SecurityGroupRoutable[_ <: Resource[_]]]] = None, Outputs: Option[Seq[Output[_]]] = None, AWSTemplateFormatVersion: Option[String] = None) extends Product with Serializable

Template is the container for all the elements of your AWS CloudFormation template.

// create the template
val simpleTemplate = Template(
  Description = Some("Simple S3 Bucket Template"),
  Resources = Seq(
    `AWS::S3::Bucket`(
      name = "S3Bucket",
      BucketName = Some("UniqueBucketForSimpleTemplate")
    )
  )
)
Description

See description

Parameters

See parameters

Conditions

See conditionals

Mappings

See mappings

Resources

See resources

Outputs

See outputs

AWSTemplateFormatVersion

See version

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Template
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Template(Description: Option[String] = None, Parameters: Option[Seq[Parameter]] = None, Conditions: Option[Seq[Condition]] = None, Mappings: Option[Seq[Mapping[_]]] = None, Resources: Seq[Resource[_]], Routables: Option[Seq[SecurityGroupRoutable[_ <: Resource[_]]]] = None, Outputs: Option[Seq[Output[_]]] = None, AWSTemplateFormatVersion: Option[String] = None)

    Description

    See description

    Parameters

    See parameters

    Conditions

    See conditionals

    Mappings

    See mappings

    Resources

    See resources

    Outputs

    See outputs

    AWSTemplateFormatVersion

    See version

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(t: Template): Template
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. val AWSTemplateFormatVersion: Option[String]
  6. val Conditions: Option[Seq[Condition]]
  7. val Description: Option[String]
  8. val Mappings: Option[Seq[Mapping[_]]]
  9. val Outputs: Option[Seq[Output[_]]]
  10. val Parameters: Option[Seq[Parameter]]
  11. val Resources: Seq[Resource[_]]
  12. val Routables: Option[Seq[SecurityGroupRoutable[_ <: Resource[_]]]]
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def lookupResource[R <: Resource[R]](name: String): R
  20. def lookupRoutable[R <: Resource[R]](name: String): SecurityGroupRoutable[R]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped