Class: Aws::EventBridge::Types::CreateEndpointRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::CreateEndpointRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the global endpoint.
-
#event_buses ⇒ Array<Types::EndpointEventBus>
Define the event buses used.
-
#name ⇒ String
The name of the global endpoint.
-
#replication_config ⇒ Types::ReplicationConfig
Enable or disable event replication.
-
#role_arn ⇒ String
The ARN of the role used for replication.
-
#routing_config ⇒ Types::RoutingConfig
Configure the routing policy, including the health check and secondary Region..
Instance Attribute Details
#description ⇒ String
A description of the global endpoint.
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |
#event_buses ⇒ Array<Types::EndpointEventBus>
Define the event buses used.
The names of the event buses must be identical in each Region.
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the global endpoint. For example, ‘“Name”:“us-east-2-custom_bus_A-endpoint”`.
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |
#replication_config ⇒ Types::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`.
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role used for replication.
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |
#routing_config ⇒ Types::RoutingConfig
Configure the routing policy, including the health check and secondary Region..
986 987 988 989 990 991 992 993 994 995 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 986 class CreateEndpointRequest < Struct.new( :name, :description, :routing_config, :replication_config, :event_buses, :role_arn) SENSITIVE = [] include Aws::Structure end |