Module Values.AssociateProfileRequestSource

Associates a Route 53 Profiles profile with a VPC. A VPC can have only one Profile associated with it, but a Profile can be associated with 1000 of VPCs (and you can request a higher quota). For more information, see https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html#limits-api-entities.

Sourcetype nonrec t = {
  1. name : Name.t;
    (*

    A name for the association.

    *)
  2. profileId : ResourceId.t;
    (*

    ID of the Profile.

    *)
  3. resourceId : ResourceId.t;
    (*

    The ID of the VPC.

    *)
  4. tags : TagList.t option;
    (*

    A list of the tag keys and values that you want to identify the Profile association.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:Name.t -> profileId:ResourceId.t -> resourceId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Name.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