Sha256: a8e1bd161aee21dcdb79d91732b9ca4c19c252e3939c90f2ecabe2c6a1d2f11a
Contents?: true
Size: 529 Bytes
Versions: 25
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true require_relative 'jsonable' module CfnDsl # Handles autoscaling group update policy objects for Resources # # Usage # Resource("aaa") { # UpdatePolicy("AutoScalingRollingUpdate", { # "MinInstancesInService" => "1", # "MaxBatchSize" => "1", # "PauseTime" => "PT12M5S" # }) # } # class UpdatePolicyDefinition < JSONable include JSONSerialisableObject attr_reader :value def initialize(value) @value = value end end end
Version data entries
25 entries across 25 versions & 1 rubygems