Module CloudFormation.StackSet

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html

type managed_execution = {
  1. active : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-managedexecution.html

and tag = {
  1. value : string;
  2. key : string;
}

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

and auto_deployment = {
  1. enabled : bool option;
  2. retain_stacks_on_account_removal : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-autodeployment.html

and operation_preferences = {
  1. max_concurrent_percentage : int option;
  2. region_concurrency_type : string option;
  3. max_concurrent_count : int option;
  4. failure_tolerance_percentage : int option;
  5. failure_tolerance_count : int option;
  6. region_order : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html

and deployment_targets = {
  1. account_filter_type : string option;
  2. accounts : string list option;
  3. accounts_url : string option;
  4. organizational_unit_ids : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html

and parameter = {
  1. parameter_value : string;
  2. parameter_key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-parameter.html

and stack_instances = {
  1. parameter_overrides : parameter list option;
  2. deployment_targets : deployment_targets;
  3. regions : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html

type properties = {
  1. description : string option;
  2. parameters : parameter list option;
  3. stack_instances_group : stack_instances list option;
  4. template_body : string option;
  5. stack_set_name : string;
  6. call_as : string option;
  7. operation_preferences : operation_preferences option;
  8. template_url : string option;
  9. auto_deployment : auto_deployment option;
  10. capabilities : string list option;
  11. permission_model : string;
  12. administration_role_arn : string option;
  13. execution_role_name : string option;
  14. managed_execution : managed_execution option;
  15. tags : tag list option;
}

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

val make_properties : ?description:string -> ?parameters:parameter list -> ?stack_instances_group:stack_instances list -> ?template_body:string -> stack_set_name:string -> ?call_as:string -> ?operation_preferences:operation_preferences -> ?template_url:string -> ?auto_deployment:auto_deployment -> ?capabilities:string list -> permission_model:string -> ?administration_role_arn:string -> ?execution_role_name:string -> ?managed_execution:managed_execution -> ?tags:tag list -> unit -> properties
val make_managed_execution : ?active:bool -> unit -> managed_execution
val make_tag : value:string -> key:string -> unit -> tag
val make_auto_deployment : ?enabled:bool -> ?retain_stacks_on_account_removal:bool -> unit -> auto_deployment
val make_operation_preferences : ?max_concurrent_percentage:int -> ?region_concurrency_type:string -> ?max_concurrent_count:int -> ?failure_tolerance_percentage:int -> ?failure_tolerance_count:int -> ?region_order:string list -> unit -> operation_preferences
val make_deployment_targets : ?account_filter_type:string -> ?accounts:string list -> ?accounts_url:string -> ?organizational_unit_ids:string list -> unit -> deployment_targets
val make_parameter : parameter_value:string -> parameter_key:string -> unit -> parameter
val make_stack_instances : ?parameter_overrides:parameter list -> deployment_targets:deployment_targets -> regions:string list -> unit -> stack_instances
val yojson_of_managed_execution : managed_execution -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_auto_deployment : auto_deployment -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_operation_preferences : operation_preferences -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_deployment_targets : deployment_targets -> Yojson.Safe.t
val yojson_of_parameter : parameter -> Yojson.Safe.t
val yojson_of_stack_instances : stack_instances -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. stack_set_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string