Module Values.AwsEventsEndpointDetailsSource

Provides details about an Amazon EventBridge global endpoint. The endpoint can improve your application’s availability by making it Regional-fault tolerant.

Sourcetype nonrec t = {
  1. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the endpoint.

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

    A description of the endpoint.

    *)
  3. endpointId : NonEmptyString.t option;
    (*

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

    *)
  4. endpointUrl : NonEmptyString.t option;
    (*

    The URL of the endpoint.

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

    The event buses being used by the endpoint.

    *)
  6. name : NonEmptyString.t option;
    (*

    The name of the endpoint.

    *)
  7. replicationConfig : AwsEventsEndpointReplicationConfigDetails.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.

    *)
  8. roleArn : NonEmptyString.t option;
    (*

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

    *)
  9. routingConfig : AwsEventsEndpointRoutingConfigDetails.t option;
    (*

    The routing configuration of the endpoint.

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

    The current state of the endpoint.

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

    The reason the endpoint is in its current state.

    *)
}
Sourceval make : ?arn:??? -> ?description:??? -> ?endpointId:??? -> ?endpointUrl:??? -> ?eventBuses:??? -> ?name:??? -> ?replicationConfig:??? -> ?roleArn:??? -> ?routingConfig:??? -> ?state:??? -> ?stateReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.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