Module Values.DescribeEndpointResponseSource

Get the information about an existing global 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 option;
    (*

    The name of the endpoint you asked for information about.

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

    The description of the endpoint you asked for information about.

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

    The ARN of the endpoint you asked for information about.

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

    The routing configuration of the endpoint you asked for information about.

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

    Whether replication is enabled or disabled for the endpoint you asked for information about.

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

    The event buses being used by the endpoint you asked for information about.

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

    The ARN of the role used by the endpoint you asked for information about.

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

    The ID of the endpoint you asked for information about.

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

    The URL of the endpoint you asked for information about.

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

    The current state of the endpoint you asked for information about.

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

    The reason the endpoint you asked for information about is in its current state.

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

    The time the endpoint you asked for information about was created.

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

    The last time the endpoint you asked for information about was modified.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalException of InternalException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?description:??? -> ?arn:??? -> ?routingConfig:??? -> ?replicationConfig:??? -> ?eventBuses:??? -> ?roleArn:??? -> ?endpointId:??? -> ?endpointUrl:??? -> ?state:??? -> ?stateReason:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalException of unit | `ResourceNotFoundException 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 | `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