Module ApiGateway.DomainName

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html

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

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

and mutual_tls_authentication = {
  1. truststore_version : string option;
  2. truststore_uri : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-mutualtlsauthentication.html

and endpoint_configuration = {
  1. types : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html

type properties = {
  1. mutual_tls_authentication : mutual_tls_authentication option;
  2. ownership_verification_certificate_arn : string option;
  3. domain_name : string option;
  4. security_policy : string option;
  5. endpoint_configuration : endpoint_configuration option;
  6. regional_certificate_arn : string option;
  7. tags : tag list option;
  8. certificate_arn : string option;
}

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

val make_properties : ?mutual_tls_authentication:mutual_tls_authentication -> ?ownership_verification_certificate_arn:string -> ?domain_name:string -> ?security_policy:string -> ?endpoint_configuration:endpoint_configuration -> ?regional_certificate_arn:string -> ?tags:tag list -> ?certificate_arn:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_mutual_tls_authentication : ?truststore_version:string -> ?truststore_uri:string -> unit -> mutual_tls_authentication
val make_endpoint_configuration : ?types:string list -> unit -> endpoint_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_mutual_tls_authentication : mutual_tls_authentication -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_endpoint_configuration : endpoint_configuration -> [> `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. regional_hosted_zone_id : string;
  3. regional_domain_name : string;
  4. distribution_hosted_zone_id : string;
  5. distribution_domain_name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string