Module DataSync.LocationEFS

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationefs.html

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

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

and ec2_config = {
  1. subnet_arn : string;
  2. security_group_arns : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationefs-ec2config.html

type properties = {
  1. efs_filesystem_arn : string option;
  2. ec2_config : ec2_config;
  3. access_point_arn : string option;
  4. subdirectory : string option;
  5. in_transit_encryption : string option;
  6. file_system_access_role_arn : string option;
  7. tags : tag list option;
}

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

val make_properties : ?efs_filesystem_arn:string -> ec2_config:ec2_config -> ?access_point_arn:string -> ?subdirectory:string -> ?in_transit_encryption:string -> ?file_system_access_role_arn:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_ec2_config : subnet_arn:string -> security_group_arns:string list -> unit -> ec2_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ec2_config : ec2_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. location_uri : string;
  3. location_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string