Module Amplify.App

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

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-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 custom_rule = {
  1. condition : string option;
  2. status : string option;
  3. target : string;
  4. source : string;
}

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

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

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

and auto_branch_creation_config = {
  1. environment_variables : environment_variable list option;
  2. auto_branch_creation_patterns : string list option;
  3. enable_auto_branch_creation : bool option;
  4. pull_request_environment_name : string option;
  5. enable_pull_request_preview : bool option;
  6. enable_auto_build : bool option;
  7. enable_performance_mode : bool option;
  8. build_spec : string option;
  9. stage : string option;
  10. basic_auth_config : basic_auth_config option;
  11. framework : string option;
}

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

type properties = {
  1. auto_branch_creation_config : auto_branch_creation_config option;
  2. oauth_token : string option;
  3. description : string option;
  4. platform : string option;
  5. enable_branch_auto_deletion : bool option;
  6. name : string;
  7. repository : string option;
  8. environment_variables : environment_variable list option;
  9. access_token : string option;
  10. build_spec : string option;
  11. custom_rules : custom_rule list option;
  12. basic_auth_config : basic_auth_config option;
  13. custom_headers : string option;
  14. tags : tag list option;
  15. iam_service_role : string option;
}

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

val make_properties : ?auto_branch_creation_config:auto_branch_creation_config -> ?oauth_token:string -> ?description:string -> ?platform:string -> ?enable_branch_auto_deletion:bool -> name:string -> ?repository:string -> ?environment_variables:environment_variable list -> ?access_token:string -> ?build_spec:string -> ?custom_rules:custom_rule list -> ?basic_auth_config:basic_auth_config -> ?custom_headers:string -> ?tags:tag list -> ?iam_service_role:string -> unit -> properties
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_custom_rule : ?condition:string -> ?status:string -> target:string -> source:string -> unit -> custom_rule
val make_environment_variable : value:string -> name:string -> unit -> environment_variable
val make_auto_branch_creation_config : ?environment_variables:environment_variable list -> ?auto_branch_creation_patterns:string list -> ?enable_auto_branch_creation:bool -> ?pull_request_environment_name:string -> ?enable_pull_request_preview:bool -> ?enable_auto_build:bool -> ?enable_performance_mode:bool -> ?build_spec:string -> ?stage:string -> ?basic_auth_config:basic_auth_config -> ?framework:string -> unit -> auto_branch_creation_config
val yojson_of_basic_auth_config : basic_auth_config -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_custom_rule : custom_rule -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_environment_variable : environment_variable -> Yojson.Safe.t
val yojson_of_auto_branch_creation_config : auto_branch_creation_config -> [> `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. app_id : string;
  3. arn : string;
  4. default_domain : string;
  5. app_name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string