Module Values.AccessSourcesItemSource

Summary information about an access source.

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

    The Amazon Resource Name (ARN) of the access source.

    *)
  2. cidr : Cidr.t option;
    (*

    The CIDR block that defines the IP address range for the access source.

    *)
  3. createdAt : ISO8601TimeString.t option;
    (*

    The date and time when the access source was created.

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

    The unique identifier of the access source.

    *)
  5. ipAddressType : IpAddressType.t option;
    (*

    The IP address type of the access source.

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

    The name of the access source.

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

    The ID of the DNS view that the access source is associated with.

    *)
  8. protocol : DnsProtocol.t option;
    (*

    The protocol used by the access source.

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

    The current status of the access source.

    *)
  10. updatedAt : ISO8601TimeString.t option;
    (*

    The date and time when the access source was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?cidr:??? -> ?createdAt:??? -> ?id:??? -> ?ipAddressType:??? -> ?name:??? -> ?dnsViewId:??? -> ?protocol:??? -> ?status:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceArn.t | `Timestamp of ISO8601TimeString.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