Module Values.ProfileSource

A complex type that includes settings for a Route 53 Profile.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Profile.

    *)
  2. clientToken : CreatorRequestId.t option;
    (*

    The ClientToken value that was assigned when the Profile was created.

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

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

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

    ID of the Profile.

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

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

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

    Name of the Profile.

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

    Amazon Web Services account ID of the Profile owner.

    *)
  8. shareStatus : ShareStatus.t option;
    (*

    Sharing status for the Profile.

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

    The status for the Profile.

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

    Status message that includes additiona information about the Profile.

    *)
}
Sourceval make : ?arn:??? -> ?clientToken:??? -> ?creationTime:??? -> ?id:??? -> ?modificationTime:??? -> ?name:??? -> ?ownerId:??? -> ?shareStatus:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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