Module ServiceDiscovery.PrivateDnsNamespace

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html

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

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

and soa = {
  1. ttl : float option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-privatednsnamespace-soa.html

and private_dns_properties_mutable = {
  1. soa : soa option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-privatednsnamespace-privatednspropertiesmutable.html

and properties_ = {
  1. dns_properties : private_dns_properties_mutable option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-privatednsnamespace-properties.html

type properties = {
  1. description : string option;
  2. vpc : string;
  3. properties_ : properties_ option;
  4. tags : tag list option;
  5. name : string;
}

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

val make_properties : ?description:string -> vpc:string -> ?properties_:properties_ -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val make_soa : ?ttl:float -> unit -> soa
val make_private_dns_properties_mutable : ?soa:soa -> unit -> private_dns_properties_mutable
val make_properties_ : ?dns_properties:private_dns_properties_mutable -> unit -> properties_
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_soa : soa -> Yojson.Safe.t
val yojson_of_private_dns_properties_mutable : private_dns_properties_mutable -> Yojson.Safe.t
val yojson_of_properties_ : properties_ -> [> `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. hosted_zone_id : string;
  3. id : string;
  4. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string