Module Values.TrustAnchorDetailSource

The state of the trust anchor after a read or write operation.

Sourcetype nonrec t = {
  1. trustAnchorId : Uuid.t option;
    (*

    The unique identifier of the trust anchor.

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

    The ARN of the trust anchor.

    *)
  3. name : ResourceName.t option;
    (*

    The name of the trust anchor.

    *)
  4. source : Source.t option;
    (*

    The trust anchor type and its related certificate data.

    *)
  5. enabled : Boolean.t option;
    (*

    Indicates whether the trust anchor is enabled.

    *)
  6. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 timestamp when the trust anchor was created.

    *)
  7. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 timestamp when the trust anchor was last updated.

    *)
  8. notificationSettings : NotificationSettingDetails.t option;
    (*

    A list of notification settings to be associated to the trust anchor.

    *)
}
Sourceval make : ?trustAnchorId:??? -> ?trustAnchorArn:??? -> ?name:??? -> ?source:??? -> ?enabled:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?notificationSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of NotificationSettingDetailThresholdInteger.t | `String of NotificationSettingDetailConfiguredByString.t ]) list ] list | `String of Uuid.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of SourceDataX509CertificateDataString.t ]) list ]) list | `Timestamp of SyntheticTimestamp_date_time.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