Class: Aws::EventBridge::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::Endpoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
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 .
[1]: docs.aws.amazon.com/eventbridge/latest/userguide/eb-global-endpoints.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the endpoint.
-
#creation_time ⇒ Time
The time the endpoint was created.
-
#description ⇒ String
A description for the endpoint.
-
#endpoint_id ⇒ String
The URL subdomain of the endpoint.
-
#endpoint_url ⇒ String
The URL of the endpoint.
-
#event_buses ⇒ Array<Types::EndpointEventBus>
The event buses being used by the endpoint.
-
#last_modified_time ⇒ Time
The last time the endpoint was modified.
-
#name ⇒ String
The name of the endpoint.
-
#replication_config ⇒ Types::ReplicationConfig
Whether event replication was enabled or disabled for this endpoint.
-
#role_arn ⇒ String
The ARN of the role used by event replication for the endpoint.
-
#routing_config ⇒ Types::RoutingConfig
The routing configuration of the endpoint.
-
#state ⇒ String
The current state of the endpoint.
-
#state_reason ⇒ String
The reason the endpoint is in its current state.
Instance Attribute Details
#arn ⇒ String
The ARN of the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#creation_time ⇒ Time
The time the endpoint was created.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#endpoint_id ⇒ String
The URL subdomain of the endpoint. For example, if the URL for Endpoint is abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#endpoint_url ⇒ String
The URL of the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#event_buses ⇒ Array<Types::EndpointEventBus>
The event buses being used by the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#last_modified_time ⇒ Time
The last time the endpoint was modified.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#replication_config ⇒ Types::ReplicationConfig
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.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role used by event replication for the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#routing_config ⇒ Types::RoutingConfig
The routing configuration of the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current state of the endpoint.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#state_reason ⇒ String
The reason the endpoint is in its current state.
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2586 class Endpoint < Struct.new( :name, :description, :arn, :routing_config, :replication_config, :event_buses, :role_arn, :endpoint_id, :endpoint_url, :state, :state_reason, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end |