Route53.HostedZone
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonetag.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html
type properties = {
vp_cs : vpc list option;
hosted_zone_config : hosted_zone_config option;
query_logging_config : query_logging_config option;
name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html;
val make_properties :
?hosted_zone_tags:hosted_zone_tag list ->
?vp_cs:vpc list ->
?hosted_zone_config:hosted_zone_config ->
?query_logging_config:query_logging_config ->
?name:string ->
unit ->
properties
val make_hosted_zone_tag :
value:string ->
key:string ->
unit ->
hosted_zone_tag
val make_vpc : vpc_region:string -> vpc_id:string -> unit -> vpc
val make_query_logging_config :
cloud_watch_logs_log_group_arn:string ->
unit ->
query_logging_config
val make_hosted_zone_config : ?comment:string -> unit -> hosted_zone_config
val yojson_of_hosted_zone_tag :
hosted_zone_tag ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_vpc : vpc -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_query_logging_config :
query_logging_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_hosted_zone_config :
hosted_zone_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes