Module AccessAnalyzer.Analyzer

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html

type unused_access_configuration = {
  1. unused_access_age : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-unusedaccessconfiguration.html

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

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

and filter = {
  1. exists : bool option;
  2. contains : string list option;
  3. neq : string list option;
  4. eq : string list option;
  5. property : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-filter.html

and analyzer_configuration = {
  1. unused_access_configuration : unused_access_configuration option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-analyzerconfiguration.html

and archive_rule = {
  1. filter : filter list;
  2. rule_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-archiverule.html

type properties = {
  1. archive_rules : archive_rule list option;
  2. type_ : string;
  3. analyzer_name : string option;
  4. tags : tag list option;
  5. analyzer_configuration : analyzer_configuration option;
}

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

val make_properties : ?archive_rules:archive_rule list -> type_:string -> ?analyzer_name:string -> ?tags:tag list -> ?analyzer_configuration:analyzer_configuration -> unit -> properties
val make_unused_access_configuration : ?unused_access_age:int -> unit -> unused_access_configuration
val make_tag : value:string -> key:string -> unit -> tag
val make_filter : ?exists:bool -> ?contains:string list -> ?neq:string list -> ?eq:string list -> property:string -> unit -> filter
val make_analyzer_configuration : ?unused_access_configuration:unused_access_configuration -> unit -> analyzer_configuration
val make_archive_rule : filter:filter list -> rule_name:string -> unit -> archive_rule
val yojson_of_unused_access_configuration : unused_access_configuration -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_filter : filter -> Yojson.Safe.t
val yojson_of_analyzer_configuration : analyzer_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_archive_rule : archive_rule -> [> `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. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string