Module Values.UpdateConnectionResponseSource

Updates settings for a connection.

Sourcetype nonrec t = {
  1. connectionArn : ConnectionArn.t option;
    (*

    The ARN of the connection that was updated.

    *)
  2. connectionState : ConnectionState.t option;
    (*

    The state of the connection that was updated.

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

    A time stamp for the time that the connection was created.

    *)
  4. lastModifiedTime : Timestamp.t option;
    (*

    A time stamp for the time that the connection was last modified.

    *)
  5. lastAuthorizedTime : Timestamp.t option;
    (*

    A time stamp for the time that the connection was last authorized.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConcurrentModificationException of ConcurrentModificationException.t
  3. | `InternalException of InternalException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectionArn:??? -> ?connectionState:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastAuthorizedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `ConcurrentModificationException of unit | `InternalException of unit | `LimitExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `ConcurrentModificationException of unit | `InternalException of unit | `LimitExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionArn.t | `Timestamp of Timestamp.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