Module Values.MacSecKeySource

Information about the MAC Security (MACsec) secret key.

Sourcetype nonrec t = {
  1. secretARN : SecretARN.t option;
    (*

    The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key.

    *)
  2. ckn : Ckn.t option;
    (*

    The Connection Key Name (CKN) for the MAC Security secret key.

    *)
  3. state : State.t option;
    (*

    The state of the MAC Security (MACsec) secret key. The possible values are: associating: The MAC Security (MACsec) secret key is being validated and not yet associated with the connection or LAG. associated: The MAC Security (MACsec) secret key is validated and associated with the connection or LAG. disassociating: The MAC Security (MACsec) secret key is being disassociated from the connection or LAG disassociated: The MAC Security (MACsec) secret key is no longer associated with the connection or LAG.

    *)
  4. startOn : StartOnDate.t option;
    (*

    The date that the MAC Security (MACsec) secret key takes effect. The value is displayed in UTC format.

    *)
}
Sourceval make : ?secretARN:??? -> ?ckn:??? -> ?state:??? -> ?startOn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SecretARN.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