Module Values.ProfileAssociationSource

An association between a Route 53 Profile and a VPC.

Sourcetype nonrec t = {
  1. creationTime : Rfc3339Timestamp.t option;
    (*

    The date and time that the Profile association was created, in Unix time format and Coordinated Universal Time (UTC).

    *)
  2. id : ResourceId.t option;
    (*

    ID of the Profile association.

    *)
  3. modificationTime : Rfc3339Timestamp.t option;
    (*

    The date and time that the Profile association was modified, in Unix time format and Coordinated Universal Time (UTC).

    *)
  4. name : Name.t option;
    (*

    Name of the Profile association.

    *)
  5. ownerId : AccountId.t option;
    (*

    Amazon Web Services account ID of the Profile association owner.

    *)
  6. profileId : ResourceId.t option;
    (*

    ID of the Profile.

    *)
  7. resourceId : ResourceId.t option;
    (*

    The Amazon Resource Name (ARN) of the VPC.

    *)
  8. status : ProfileStatus.t option;
    (*

    Status of the Profile association.

    *)
  9. statusMessage : String_.t option;
    (*

    Additional information about the Profile association.

    *)
}
Sourceval make : ?creationTime:??? -> ?id:??? -> ?modificationTime:??? -> ?name:??? -> ?ownerId:??? -> ?profileId:??? -> ?resourceId:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.t | `Timestamp of Rfc3339Timestamp.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