Module Values.EndpointSource

A global endpoint used to improve your application's availability by making it regional-fault tolerant. 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 option;
    (*

    The name of the endpoint.

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

    A description for the endpoint.

    *)
  3. arn : EndpointArn.t option;
    (*

    The ARN of the endpoint.

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

    The routing configuration of the endpoint.

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

    Whether event replication was enabled or disabled for this endpoint. The default state is ENABLED which means you must supply a RoleArn. If you don't have a RoleArn or you don't want event replication enabled, set the state to DISABLED.

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

    The event buses being used by the endpoint.

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

    The ARN of the role used by event replication for the endpoint.

    *)
  8. endpointId : EndpointId.t option;
    (*

    The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.

    *)
  9. endpointUrl : EndpointUrl.t option;
    (*

    The URL of the endpoint.

    *)
  10. state : EndpointState.t option;
    (*

    The current state of the endpoint.

    *)
  11. stateReason : EndpointStateReason.t option;
    (*

    The reason the endpoint is in its current state.

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

    The time the endpoint was created.

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

    The last time the endpoint was modified.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?arn:??? -> ?routingConfig:??? -> ?replicationConfig:??? -> ?eventBuses:??? -> ?roleArn:??? -> ?endpointId:??? -> ?endpointUrl:??? -> ?state:??? -> ?stateReason:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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 | `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