Module Values.DomainNameAccessAssociationSource

Represents a domain name access association between an access association source and a private custom domain name. With a domain name access association, an access association source can invoke a private custom domain name while isolated from the public internet.

Sourcetype nonrec t = {
  1. domainNameAccessAssociationArn : String_.t option;
    (*

    The ARN of the domain name access association resource.

    *)
  2. domainNameArn : String_.t option;
    (*

    The ARN of the domain name.

    *)
  3. accessAssociationSourceType : AccessAssociationSourceType.t option;
    (*

    The type of the domain name access association source.

    *)
  4. accessAssociationSource : String_.t option;
    (*

    The ARN of the domain name access association source. For a VPCE, the ARN must be a VPC endpoint.

    *)
  5. tags : MapOfStringToString.t option;
    (*

    The collection of tags. Each tag element is associated with a given resource.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainNameAccessAssociationArn:??? -> ?domainNameArn:??? -> ?accessAssociationSourceType:??? -> ?accessAssociationSource:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `LimitExceededException of LimitExceededException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `LimitExceededException of LimitExceededException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t ]) 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