Module AppConfig.Deployment

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

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

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

type properties = {
  1. deployment_strategy_id : string;
  2. configuration_profile_id : string;
  3. environment_id : string;
  4. kms_key_identifier : string option;
  5. description : string option;
  6. configuration_version : string;
  7. application_id : string;
  8. tags : tags list option;
}

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

val make_properties : deployment_strategy_id:string -> configuration_profile_id:string -> environment_id:string -> ?kms_key_identifier:string -> ?description:string -> configuration_version:string -> application_id:string -> ?tags:tags list -> 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