Module Values.AccessTokenItemSource

Summary information about a token.

Sourcetype nonrec t = {
  1. id : ResourceId.t option;
    (*

    The unique identifier of the token.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the token.

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

    The date and time when the token was created.

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

    The ID of the DNS view associated with the token.

    *)
  5. expiresAt : ISO8601TimeString.t option;
    (*

    The date and time when the token expires.

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

    The ID of the global resolver associated with the token.

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

    The name of the token.

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

    The current status of the token.

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

    The date and time when the token was last updated.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?createdAt:??? -> ?dnsViewId:??? -> ?expiresAt:??? -> ?globalResolverId:??? -> ?name:??? -> ?status:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.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