Module AppConfig.DeploymentStrategy

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html

type tags = {
  1. value : string option;
  2. key : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-tags.html

type properties = {
  1. replicate_to : string;
  2. growth_type : string option;
  3. description : string option;
  4. deployment_duration_in_minutes : float;
  5. growth_factor : float;
  6. final_bake_time_in_minutes : float option;
  7. tags : tags list option;
  8. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html;

val make_properties : replicate_to:string -> ?growth_type:string -> ?description:string -> deployment_duration_in_minutes:float -> growth_factor:float -> ?final_bake_time_in_minutes:float -> ?tags:tags list -> name:string -> unit -> properties
val make_tags : ?value:string -> ?key:string -> unit -> tags
val yojson_of_tags : tags -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string