Module Values.UpdateEndpointRequestSource

Update an existing endpoint. For more information about global endpoints, see Making applications Regional-fault tolerant with global endpoints and event replication in the Amazon EventBridge User Guide .

Sourcetype nonrec t = {
  1. name : EndpointName.t;
    (*

    The name of the endpoint you want to update.

    *)
  2. description : EndpointDescription.t option;
    (*

    A description for the endpoint.

    *)
  3. routingConfig : RoutingConfig.t option;
    (*

    Configure the routing policy, including the health check and secondary Region.

    *)
  4. replicationConfig : ReplicationConfig.t option;
    (*

    Whether event replication was enabled or disabled by this request.

    *)
  5. eventBuses : EndpointEventBusList.t option;
    (*

    Define event buses used for replication.

    *)
  6. roleArn : IamRoleArn.t option;
    (*

    The ARN of the role used by event replication for this request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?routingConfig:??? -> ?replicationConfig:??? -> ?eventBuses:??? -> ?roleArn:??? -> name:EndpointName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonPartnerEventBusArn.t ]) list ] list | `String of EndpointName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of HealthCheck.t ]) list ]) list ]) list ]) 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