Module GlobalAccelerator.Accelerator

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-accelerator.html

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

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

type properties = {
  1. ip_address_type : string option;
  2. ip_addresses : string list option;
  3. enabled : bool option;
  4. tags : tag list option;
  5. name : string;
}

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

val make_properties : ?ip_address_type:string -> ?ip_addresses:string list -> ?enabled:bool -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
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. ipv4_addresses : string list;
  3. dns_name : string;
  4. dual_stack_dns_name : string;
  5. accelerator_arn : string;
  6. ipv6_addresses : string list;
}
val create_attributes : string -> attributes
val cloudformation_type : string