Module Config.ConfigurationRecorder

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html

type recording_strategy = {
  1. use_only : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordingstrategy.html

and recording_mode_override = {
  1. description : string option;
  2. recording_frequency : string;
  3. resource_types : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordingmodeoverride.html

and exclusion_by_resource_types = {
  1. resource_types : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-exclusionbyresourcetypes.html

and recording_mode = {
  1. recording_frequency : string;
  2. recording_mode_overrides : recording_mode_override list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordingmode.html

and recording_group = {
  1. all_supported : bool option;
  2. exclusion_by_resource_types : exclusion_by_resource_types option;
  3. include_global_resource_types : bool option;
  4. recording_strategy : recording_strategy option;
  5. resource_types : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html

type properties = {
  1. name : string option;
  2. recording_group : recording_group option;
  3. recording_mode : recording_mode option;
  4. role_arn : string;
}

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

val make_properties : ?name:string -> ?recording_group:recording_group -> ?recording_mode:recording_mode -> role_arn:string -> unit -> properties
val make_recording_strategy : use_only:string -> unit -> recording_strategy
val make_recording_mode_override : ?description:string -> recording_frequency:string -> resource_types:string list -> unit -> recording_mode_override
val make_exclusion_by_resource_types : resource_types:string list -> unit -> exclusion_by_resource_types
val make_recording_mode : recording_frequency:string -> ?recording_mode_overrides:recording_mode_override list -> unit -> recording_mode
val make_recording_group : ?all_supported:bool -> ?exclusion_by_resource_types:exclusion_by_resource_types -> ?include_global_resource_types:bool -> ?recording_strategy:recording_strategy -> ?resource_types:string list -> unit -> recording_group
val yojson_of_recording_strategy : recording_strategy -> Yojson.Safe.t
val yojson_of_recording_mode_override : recording_mode_override -> Yojson.Safe.t
val yojson_of_exclusion_by_resource_types : exclusion_by_resource_types -> Yojson.Safe.t
val yojson_of_recording_mode : recording_mode -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_recording_group : recording_group -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string