Module Route53.HostedZone

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html

type hosted_zone_tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonetag.html

and vpc = {
  1. vpc_region : string;
  2. vpc_id : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html

and query_logging_config = {
  1. cloud_watch_logs_log_group_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html

and hosted_zone_config = {
  1. comment : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html

type properties = {
  1. hosted_zone_tags : hosted_zone_tag list option;
  2. vp_cs : vpc list option;
  3. hosted_zone_config : hosted_zone_config option;
  4. query_logging_config : query_logging_config option;
  5. 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 ]
type attributes = {
  1. ref_ : string;
  2. id : string;
  3. name_servers : string list;
}
val create_attributes : string -> attributes
val cloudformation_type : string