Module AppIntegrations.DataIntegration

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html

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

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

and schedule_config = {
  1. first_execution_from : string option;
  2. schedule_expression : string;
  3. object_ : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-scheduleconfig.html

and file_configuration = {
  1. filters : Yojson.Safe.t option;
  2. folders : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-fileconfiguration.html

type properties = {
  1. schedule_config : schedule_config option;
  2. file_configuration : file_configuration option;
  3. description : string option;
  4. source_uri : string;
  5. object_configuration : Yojson.Safe.t option;
  6. kms_key : string;
  7. tags : tag list option;
  8. name : string;
}

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

val make_properties : ?schedule_config:schedule_config -> ?file_configuration:file_configuration -> ?description:string -> source_uri:string -> ?object_configuration:Yojson.Safe.t -> kms_key:string -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_schedule_config : ?first_execution_from:string -> schedule_expression:string -> ?object_:string -> unit -> schedule_config
val make_file_configuration : ?filters:Yojson.Safe.t -> folders:string list -> unit -> file_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_schedule_config : schedule_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_file_configuration : file_configuration -> [> `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. data_integration_arn : string;
  3. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string