Class: Aws::EventBridge::Types::CreateEventBusRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eventbridge/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#event_source_nameString

If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.

Returns:

  • (String)


1062
1063
1064
1065
1066
1067
1068
# File 'lib/aws-sdk-eventbridge/types.rb', line 1062

class CreateEventBusRequest < Struct.new(
  :name,
  :event_source_name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the new event bus.

Custom event bus names can’t contain the ‘/` character, but you can use the `/` character in partner event bus names. In addition, for partner event buses, the name must exactly match the name of the partner event source that this event bus is matched to.

You can’t use the name ‘default` for a custom event bus, as this name is already used for your account’s default event bus.

Returns:

  • (String)


1062
1063
1064
1065
1066
1067
1068
# File 'lib/aws-sdk-eventbridge/types.rb', line 1062

class CreateEventBusRequest < Struct.new(
  :name,
  :event_source_name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

Tags to associate with the event bus.

Returns:



1062
1063
1064
1065
1066
1067
1068
# File 'lib/aws-sdk-eventbridge/types.rb', line 1062

class CreateEventBusRequest < Struct.new(
  :name,
  :event_source_name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end