Skip to content

Commit

Permalink
use AmazonTag instead of cloudformation tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tylersouthwick committed Nov 30, 2016
1 parent fb8ceb3 commit b03aa4a
Showing 1 changed file with 1 addition and 6 deletions.
Expand Up @@ -49,11 +49,6 @@ object ClusterConfiguration {
}
}

case class CloudformationTags(Key: Token[String], Value: Token[String])
object CloudformationTags {
implicit val format = jsonFormat2(CloudformationTags.apply)
}

case class VolumeSpecification(Iops: Option[Token[Int]], SizeInGB: Token[Int], VolumeType: Token[String])
object VolumeSpecification {
implicit val format = jsonFormat3(VolumeSpecification.apply)
Expand Down Expand Up @@ -116,7 +111,7 @@ case class `AWS::EMR::Cluster`(name: String,
Name: Token[String],
ReleaseLabel: Option[Token[String]],
ServiceRole: Token[String],
Tags: Option[CloudformationTags],
Tags: Option[Seq[AmazonTag]],
VisibileToAllUsers: Option[Token[Boolean]],
override val Condition: Option[ConditionRef] = None
) extends Resource[`AWS::EMR::Cluster`] {
Expand Down

0 comments on commit b03aa4a

Please sign in to comment.