Module Amplify.Branch

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-branch.html

type environment_variable = {
  1. value : string;
  2. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html

and basic_auth_config = {
  1. username : string;
  2. enable_basic_auth : bool option;
  3. password : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-basicauthconfig.html

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

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

and backend = {
  1. stack_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-backend.html

type properties = {
  1. description : string option;
  2. enable_performance_mode : bool option;
  3. backend : backend option;
  4. environment_variables : environment_variable list option;
  5. app_id : string;
  6. pull_request_environment_name : string option;
  7. enable_pull_request_preview : bool option;
  8. enable_auto_build : bool option;
  9. build_spec : string option;
  10. stage : string option;
  11. branch_name : string;
  12. basic_auth_config : basic_auth_config option;
  13. framework : string option;
  14. tags : tag list option;
}

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

val make_properties : ?description:string -> ?enable_performance_mode:bool -> ?backend:backend -> ?environment_variables:environment_variable list -> app_id:string -> ?pull_request_environment_name:string -> ?enable_pull_request_preview:bool -> ?enable_auto_build:bool -> ?build_spec:string -> ?stage:string -> branch_name:string -> ?basic_auth_config:basic_auth_config -> ?framework:string -> ?tags:tag list -> unit -> properties
val make_environment_variable : value:string -> name:string -> unit -> environment_variable
val make_basic_auth_config : username:string -> ?enable_basic_auth:bool -> password:string -> unit -> basic_auth_config
val make_tag : value:string -> key:string -> unit -> tag
val make_backend : ?stack_arn:string -> unit -> backend
val yojson_of_environment_variable : environment_variable -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_basic_auth_config : basic_auth_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_backend : backend -> [> `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. branch_name : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string