Class: Aws::EventBridgeV2::Types::EventSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridgeV2::Types::EventSourceConfiguration
- Defined in:
- gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb
Overview
EventSourceConfiguration is a union - when making an API calls you must set exactly one of the members.
EventSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EventSourceConfiguration corresponding to the set member.
Discriminated EventSource configuration. Exactly one variant must be set.
Defined Under Namespace
Classes: AwsServiceEventsConfiguration, PartnerEventsConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_service_events_configuration ⇒ Types::AwsServiceEventsSourceConfiguration
Configuration for forwarding a single AWS service's events from the account's default event bus.
-
#partner_events_configuration ⇒ Types::PartnerEventsSourceConfiguration
Configuration for forwarding a partner event source's events through a managed partner event bus.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_service_events_configuration ⇒ Types::AwsServiceEventsSourceConfiguration
Configuration for forwarding a single AWS service's events from the account's default event bus.
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 |
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1113 class EventSourceConfiguration < Struct.new( :aws_service_events_configuration, :partner_events_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsServiceEventsConfiguration < EventSourceConfiguration; end class PartnerEventsConfiguration < EventSourceConfiguration; end class Unknown < EventSourceConfiguration; end end |
#partner_events_configuration ⇒ Types::PartnerEventsSourceConfiguration
Configuration for forwarding a partner event source's events through a managed partner event bus.
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 |
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1113 class EventSourceConfiguration < Struct.new( :aws_service_events_configuration, :partner_events_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsServiceEventsConfiguration < EventSourceConfiguration; end class PartnerEventsConfiguration < EventSourceConfiguration; end class Unknown < EventSourceConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1113 1114 1115 |
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1113 def unknown @unknown end |