Module VpcLattice.Service

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html

type dns_entry = {
  1. domain_name : string option;
  2. hosted_zone_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-service-dnsentry.html

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

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

type properties = {
  1. dns_entry : dns_entry option;
  2. custom_domain_name : string option;
  3. auth_type : string option;
  4. tags : tag list option;
  5. name : string option;
  6. certificate_arn : string option;
}

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

val make_properties : ?dns_entry:dns_entry -> ?custom_domain_name:string -> ?auth_type:string -> ?tags:tag list -> ?name:string -> ?certificate_arn:string -> unit -> properties
val make_dns_entry : ?domain_name:string -> ?hosted_zone_id:string -> unit -> dns_entry
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_dns_entry : dns_entry -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. status : string;
  3. last_updated_at : string;
  4. created_at : string;
  5. dns_entry__hosted_zone_id : string;
  6. id : string;
  7. arn : string;
  8. dns_entry__domain_name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string