Module Values.EndpointConfigurationResponseSource

Represents an endpoint configuration.

Sourcetype nonrec t = {
  1. certificateArn : string option;
    (*

    The ARN of the ACM certificate.

    *)
  2. domainName : string option;
    (*

    The domain name.

    *)
  3. portalDefaultDomainName : string option;
    (*

    The portal default domain name. This domain name is generated and managed by API Gateway.

    *)
  4. portalDomainHostedZoneId : string option;
    (*

    The portal domain hosted zone identifier.

    *)
}
Sourceval make : ?certificateArn:??? -> ?domainName:??? -> ?portalDefaultDomainName:??? -> ?portalDomainHostedZoneId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t