Module FSx.Volume

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-volume.html

type aggregate_configuration = {
  1. aggregates : string list option;
  2. constituents_per_aggregate : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration-aggregateconfiguration.html

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

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

and autocommit_period = {
  1. type_ : string;
  2. value : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration-snaplockconfiguration-autocommitperiod.html

and user_and_group_quotas = {
  1. type_ : string;
  2. id : int;
  3. storage_capacity_quota_gib : int;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-openzfsconfiguration-userandgroupquotas.html

and client_configurations = {
  1. options : string list;
  2. clients : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-openzfsconfiguration-nfsexports-clientconfigurations.html

and origin_snapshot = {
  1. copy_strategy : string;
  2. snapshot_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-openzfsconfiguration-originsnapshot.html

and retention_period = {
  1. type_ : string;
  2. value : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-retentionperiod.html

and tiering_policy = {
  1. cooling_period : int option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration-tieringpolicy.html

and snaplock_retention_period = {
  1. default_retention : retention_period;
  2. maximum_retention : retention_period;
  3. minimum_retention : retention_period;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-snaplockretentionperiod.html

and nfs_exports = {
  1. client_configurations : client_configurations list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-openzfsconfiguration-nfsexports.html

and open_zfs_configuration = {
  1. read_only : bool option;
  2. options : string list option;
  3. data_compression_type : string option;
  4. nfs_exports : nfs_exports list option;
  5. storage_capacity_quota_gib : int option;
  6. copy_tags_to_snapshots : bool option;
  7. parent_volume_id : string;
  8. storage_capacity_reservation_gib : int option;
  9. record_size_kib : int option;
  10. origin_snapshot : origin_snapshot option;
  11. user_and_group_quotas : user_and_group_quotas list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-openzfsconfiguration.html

and snaplock_configuration = {
  1. audit_log_volume : string option;
  2. volume_append_mode_enabled : string option;
  3. autocommit_period : autocommit_period option;
  4. retention_period : snaplock_retention_period option;
  5. privileged_delete : string option;
  6. snaplock_type : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration-snaplockconfiguration.html

and ontap_configuration = {
  1. junction_path : string option;
  2. storage_virtual_machine_id : string;
  3. tiering_policy : tiering_policy option;
  4. size_in_megabytes : string option;
  5. volume_style : string option;
  6. size_in_bytes : string option;
  7. security_style : string option;
  8. snaplock_configuration : snaplock_configuration option;
  9. aggregate_configuration : aggregate_configuration option;
  10. snapshot_policy : string option;
  11. storage_efficiency_enabled : string option;
  12. copy_tags_to_backups : string option;
  13. ontap_volume_type : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration.html

type properties = {
  1. open_zfs_configuration : open_zfs_configuration option;
  2. volume_type : string option;
  3. backup_id : string option;
  4. ontap_configuration : ontap_configuration option;
  5. tags : tag list option;
  6. name : string;
}

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

val make_properties : ?open_zfs_configuration:open_zfs_configuration -> ?volume_type:string -> ?backup_id:string -> ?ontap_configuration:ontap_configuration -> ?tags:tag list -> name:string -> unit -> properties
val make_aggregate_configuration : ?aggregates:string list -> ?constituents_per_aggregate:int -> unit -> aggregate_configuration
val make_tag : key:string -> value:string -> unit -> tag
val make_autocommit_period : type_:string -> ?value:int -> unit -> autocommit_period
val make_user_and_group_quotas : type_:string -> id:int -> storage_capacity_quota_gib:int -> unit -> user_and_group_quotas
val make_client_configurations : options:string list -> clients:string -> unit -> client_configurations
val make_origin_snapshot : copy_strategy:string -> snapshot_arn:string -> unit -> origin_snapshot
val make_retention_period : type_:string -> ?value:int -> unit -> retention_period
val make_tiering_policy : ?cooling_period:int -> ?name:string -> unit -> tiering_policy
val make_snaplock_retention_period : default_retention:retention_period -> maximum_retention:retention_period -> minimum_retention:retention_period -> unit -> snaplock_retention_period
val make_nfs_exports : client_configurations:client_configurations list -> unit -> nfs_exports
val make_open_zfs_configuration : ?read_only:bool -> ?options:string list -> ?data_compression_type:string -> ?nfs_exports:nfs_exports list -> ?storage_capacity_quota_gib:int -> ?copy_tags_to_snapshots:bool -> parent_volume_id:string -> ?storage_capacity_reservation_gib:int -> ?record_size_kib:int -> ?origin_snapshot:origin_snapshot -> ?user_and_group_quotas:user_and_group_quotas list -> unit -> open_zfs_configuration
val make_snaplock_configuration : ?audit_log_volume:string -> ?volume_append_mode_enabled:string -> ?autocommit_period:autocommit_period -> ?retention_period:snaplock_retention_period -> ?privileged_delete:string -> snaplock_type:string -> unit -> snaplock_configuration
val make_ontap_configuration : ?junction_path:string -> storage_virtual_machine_id:string -> ?tiering_policy:tiering_policy -> ?size_in_megabytes:string -> ?volume_style:string -> ?size_in_bytes:string -> ?security_style:string -> ?snaplock_configuration:snaplock_configuration -> ?aggregate_configuration:aggregate_configuration -> ?snapshot_policy:string -> ?storage_efficiency_enabled:string -> ?copy_tags_to_backups:string -> ?ontap_volume_type:string -> unit -> ontap_configuration
val yojson_of_aggregate_configuration : aggregate_configuration -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_autocommit_period : autocommit_period -> Yojson.Safe.t
val yojson_of_user_and_group_quotas : user_and_group_quotas -> Yojson.Safe.t
val yojson_of_client_configurations : client_configurations -> Yojson.Safe.t
val yojson_of_origin_snapshot : origin_snapshot -> Yojson.Safe.t
val yojson_of_retention_period : retention_period -> Yojson.Safe.t
val yojson_of_tiering_policy : tiering_policy -> Yojson.Safe.t
val yojson_of_snaplock_retention_period : snaplock_retention_period -> Yojson.Safe.t
val yojson_of_nfs_exports : nfs_exports -> Yojson.Safe.t
val yojson_of_open_zfs_configuration : open_zfs_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_snaplock_configuration : snaplock_configuration -> Yojson.Safe.t
val yojson_of_ontap_configuration : ontap_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. resource_arn : string;
  3. volume_id : string;
  4. uuid : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string