Class CreateEndpointRequest
- Namespace
- Amazon.EventBridge.Model
- Assembly
- AWSSDK.EventBridge.dll
Container for the parameters to the CreateEndpoint operation. Creates a global endpoint. Global endpoints improve your application's availability by making it regional-fault tolerant. To do this, you define a primary and secondary Region with event buses in each Region. You also create a Amazon Route 53 health check that will tell EventBridge to route events to the secondary Region when an "unhealthy" state is encountered and events will be routed back to the primary Region when the health check reports a "healthy" state.
public class CreateEndpointRequest : AmazonEventBridgeRequest
- Inheritance
-
CreateEndpointRequest
Constructors
CreateEndpointRequest()
public CreateEndpointRequest()
Properties
Description
Gets and sets the property Description.
A description of the global endpoint.
public string Description { get; set; }
Property Value
EventBuses
Gets and sets the property EventBuses.
Define the event buses used.
The names of the event buses must be identical in each Region.
public List<EndpointEventBus> EventBuses { get; set; }
Property Value
Name
Gets and sets the property Name.
The name of the global endpoint. For example, "Name":"us-east-2-custom_bus_A-endpoint"
.
public string Name { get; set; }
Property Value
ReplicationConfig
Gets and sets the property ReplicationConfig.
Enable or disable event replication. 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
.
public ReplicationConfig ReplicationConfig { get; set; }
Property Value
RoleArn
Gets and sets the property RoleArn.
The ARN of the role used for replication.
public string RoleArn { get; set; }
Property Value
RoutingConfig
Gets and sets the property RoutingConfig.
Configure the routing policy, including the health check and secondary Region..
public RoutingConfig RoutingConfig { get; set; }