Config.ConfigurationRecorder
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordingstrategy.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordingmodeoverride.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-exclusionbyresourcetypes.html
and recording_mode = {
recording_frequency : string;
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 = {
all_supported : bool option;
exclusion_by_resource_types : exclusion_by_resource_types option;
include_global_resource_types : bool option;
recording_strategy : recording_strategy option;
resource_types : string list option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html
type properties = {
name : string option;
recording_group : recording_group option;
recording_mode : recording_mode option;
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 ]
val create_attributes : string -> attributes