1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. eventbridge
  5. EventSource
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.eventbridge.EventSource

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a Event Bridge Event Source resource.

    For information about Event Bridge Event Source and how to use it, see What is Event Source.

    NOTE: Available since v1.130.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const exampleEventBus = new alicloud.eventbridge.EventBus("exampleEventBus", {eventBusName: name});
    const exampleQueue = new alicloud.mns.Queue("exampleQueue", {});
    const exampleEventSource = new alicloud.eventbridge.EventSource("exampleEventSource", {
        eventBusName: exampleEventBus.eventBusName,
        eventSourceName: name,
        description: name,
        linkedExternalSource: true,
        externalSourceType: "MNS",
        externalSourceConfig: {
            QueueName: exampleQueue.name,
        },
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    example_event_bus = alicloud.eventbridge.EventBus("exampleEventBus", event_bus_name=name)
    example_queue = alicloud.mns.Queue("exampleQueue")
    example_event_source = alicloud.eventbridge.EventSource("exampleEventSource",
        event_bus_name=example_event_bus.event_bus_name,
        event_source_name=name,
        description=name,
        linked_external_source=True,
        external_source_type="MNS",
        external_source_config={
            "QueueName": example_queue.name,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eventbridge"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/mns"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		exampleEventBus, err := eventbridge.NewEventBus(ctx, "exampleEventBus", &eventbridge.EventBusArgs{
    			EventBusName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		exampleQueue, err := mns.NewQueue(ctx, "exampleQueue", nil)
    		if err != nil {
    			return err
    		}
    		_, err = eventbridge.NewEventSource(ctx, "exampleEventSource", &eventbridge.EventSourceArgs{
    			EventBusName:         exampleEventBus.EventBusName,
    			EventSourceName:      pulumi.String(name),
    			Description:          pulumi.String(name),
    			LinkedExternalSource: pulumi.Bool(true),
    			ExternalSourceType:   pulumi.String("MNS"),
    			ExternalSourceConfig: pulumi.Map{
    				"QueueName": exampleQueue.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf-example";
        var exampleEventBus = new AliCloud.EventBridge.EventBus("exampleEventBus", new()
        {
            EventBusName = name,
        });
    
        var exampleQueue = new AliCloud.Mns.Queue("exampleQueue");
    
        var exampleEventSource = new AliCloud.EventBridge.EventSource("exampleEventSource", new()
        {
            EventBusName = exampleEventBus.EventBusName,
            EventSourceName = name,
            Description = name,
            LinkedExternalSource = true,
            ExternalSourceType = "MNS",
            ExternalSourceConfig = 
            {
                { "QueueName", exampleQueue.Name },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.eventbridge.EventBus;
    import com.pulumi.alicloud.eventbridge.EventBusArgs;
    import com.pulumi.alicloud.mns.Queue;
    import com.pulumi.alicloud.eventbridge.EventSource;
    import com.pulumi.alicloud.eventbridge.EventSourceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("tf-example");
            var exampleEventBus = new EventBus("exampleEventBus", EventBusArgs.builder()        
                .eventBusName(name)
                .build());
    
            var exampleQueue = new Queue("exampleQueue");
    
            var exampleEventSource = new EventSource("exampleEventSource", EventSourceArgs.builder()        
                .eventBusName(exampleEventBus.eventBusName())
                .eventSourceName(name)
                .description(name)
                .linkedExternalSource(true)
                .externalSourceType("MNS")
                .externalSourceConfig(Map.of("QueueName", exampleQueue.name()))
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      exampleEventBus:
        type: alicloud:eventbridge:EventBus
        properties:
          eventBusName: ${name}
      exampleQueue:
        type: alicloud:mns:Queue
      exampleEventSource:
        type: alicloud:eventbridge:EventSource
        properties:
          eventBusName: ${exampleEventBus.eventBusName}
          eventSourceName: ${name}
          description: ${name}
          linkedExternalSource: true
          externalSourceType: MNS
          externalSourceConfig:
            QueueName: ${exampleQueue.name}
    

    Create EventSource Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EventSource(name: string, args: EventSourceArgs, opts?: CustomResourceOptions);
    @overload
    def EventSource(resource_name: str,
                    args: EventSourceArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def EventSource(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    event_bus_name: Optional[str] = None,
                    event_source_name: Optional[str] = None,
                    description: Optional[str] = None,
                    external_source_config: Optional[Mapping[str, Any]] = None,
                    external_source_type: Optional[str] = None,
                    linked_external_source: Optional[bool] = None)
    func NewEventSource(ctx *Context, name string, args EventSourceArgs, opts ...ResourceOption) (*EventSource, error)
    public EventSource(string name, EventSourceArgs args, CustomResourceOptions? opts = null)
    public EventSource(String name, EventSourceArgs args)
    public EventSource(String name, EventSourceArgs args, CustomResourceOptions options)
    
    type: alicloud:eventbridge:EventSource
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args EventSourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EventSourceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EventSourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EventSourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EventSourceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var eventSourceResource = new AliCloud.EventBridge.EventSource("eventSourceResource", new()
    {
        EventBusName = "string",
        EventSourceName = "string",
        Description = "string",
        ExternalSourceConfig = 
        {
            { "string", "any" },
        },
        ExternalSourceType = "string",
        LinkedExternalSource = false,
    });
    
    example, err := eventbridge.NewEventSource(ctx, "eventSourceResource", &eventbridge.EventSourceArgs{
    	EventBusName:    pulumi.String("string"),
    	EventSourceName: pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	ExternalSourceConfig: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	ExternalSourceType:   pulumi.String("string"),
    	LinkedExternalSource: pulumi.Bool(false),
    })
    
    var eventSourceResource = new EventSource("eventSourceResource", EventSourceArgs.builder()        
        .eventBusName("string")
        .eventSourceName("string")
        .description("string")
        .externalSourceConfig(Map.of("string", "any"))
        .externalSourceType("string")
        .linkedExternalSource(false)
        .build());
    
    event_source_resource = alicloud.eventbridge.EventSource("eventSourceResource",
        event_bus_name="string",
        event_source_name="string",
        description="string",
        external_source_config={
            "string": "any",
        },
        external_source_type="string",
        linked_external_source=False)
    
    const eventSourceResource = new alicloud.eventbridge.EventSource("eventSourceResource", {
        eventBusName: "string",
        eventSourceName: "string",
        description: "string",
        externalSourceConfig: {
            string: "any",
        },
        externalSourceType: "string",
        linkedExternalSource: false,
    });
    
    type: alicloud:eventbridge:EventSource
    properties:
        description: string
        eventBusName: string
        eventSourceName: string
        externalSourceConfig:
            string: any
        externalSourceType: string
        linkedExternalSource: false
    

    EventSource Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The EventSource resource accepts the following input properties:

    EventBusName string
    The name of event bus.
    EventSourceName string
    The code name of event source.
    Description string
    The detail describe of event source.
    ExternalSourceConfig Dictionary<string, object>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    ExternalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    LinkedExternalSource bool
    Whether to connect to an external data source. Default value: false
    EventBusName string
    The name of event bus.
    EventSourceName string
    The code name of event source.
    Description string
    The detail describe of event source.
    ExternalSourceConfig map[string]interface{}
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    ExternalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    LinkedExternalSource bool
    Whether to connect to an external data source. Default value: false
    eventBusName String
    The name of event bus.
    eventSourceName String
    The code name of event source.
    description String
    The detail describe of event source.
    externalSourceConfig Map<String,Object>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType String
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource Boolean
    Whether to connect to an external data source. Default value: false
    eventBusName string
    The name of event bus.
    eventSourceName string
    The code name of event source.
    description string
    The detail describe of event source.
    externalSourceConfig {[key: string]: any}
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource boolean
    Whether to connect to an external data source. Default value: false
    event_bus_name str
    The name of event bus.
    event_source_name str
    The code name of event source.
    description str
    The detail describe of event source.
    external_source_config Mapping[str, Any]
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    external_source_type str
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linked_external_source bool
    Whether to connect to an external data source. Default value: false
    eventBusName String
    The name of event bus.
    eventSourceName String
    The code name of event source.
    description String
    The detail describe of event source.
    externalSourceConfig Map<Any>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType String
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource Boolean
    Whether to connect to an external data source. Default value: false

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EventSource resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing EventSource Resource

    Get an existing EventSource resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EventSourceState, opts?: CustomResourceOptions): EventSource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            event_bus_name: Optional[str] = None,
            event_source_name: Optional[str] = None,
            external_source_config: Optional[Mapping[str, Any]] = None,
            external_source_type: Optional[str] = None,
            linked_external_source: Optional[bool] = None) -> EventSource
    func GetEventSource(ctx *Context, name string, id IDInput, state *EventSourceState, opts ...ResourceOption) (*EventSource, error)
    public static EventSource Get(string name, Input<string> id, EventSourceState? state, CustomResourceOptions? opts = null)
    public static EventSource get(String name, Output<String> id, EventSourceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    The detail describe of event source.
    EventBusName string
    The name of event bus.
    EventSourceName string
    The code name of event source.
    ExternalSourceConfig Dictionary<string, object>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    ExternalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    LinkedExternalSource bool
    Whether to connect to an external data source. Default value: false
    Description string
    The detail describe of event source.
    EventBusName string
    The name of event bus.
    EventSourceName string
    The code name of event source.
    ExternalSourceConfig map[string]interface{}
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    ExternalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    LinkedExternalSource bool
    Whether to connect to an external data source. Default value: false
    description String
    The detail describe of event source.
    eventBusName String
    The name of event bus.
    eventSourceName String
    The code name of event source.
    externalSourceConfig Map<String,Object>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType String
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource Boolean
    Whether to connect to an external data source. Default value: false
    description string
    The detail describe of event source.
    eventBusName string
    The name of event bus.
    eventSourceName string
    The code name of event source.
    externalSourceConfig {[key: string]: any}
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType string
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource boolean
    Whether to connect to an external data source. Default value: false
    description str
    The detail describe of event source.
    event_bus_name str
    The name of event bus.
    event_source_name str
    The code name of event source.
    external_source_config Mapping[str, Any]
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    external_source_type str
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linked_external_source bool
    Whether to connect to an external data source. Default value: false
    description String
    The detail describe of event source.
    eventBusName String
    The name of event bus.
    eventSourceName String
    The code name of event source.
    externalSourceConfig Map<Any>
    The config of external source. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. VirtualHostName - The virtual host name of RabbitMQ. QueueName - The queue name of RabbitMQ. When external_source_type is RabbitMQ, The following attributes are supported: RegionId - The region ID of RabbitMQ. InstanceId - The instance ID of RabbitMQ. Topic - The topic of RabbitMQ. Offset - The offset of RabbitMQ, valid values: CONSUME_FROM_FIRST_OFFSET, CONSUME_FROM_LAST_OFFSET and CONSUME_FROM_TIMESTAMP. GroupID - The group ID of consumer. When external_source_type is MNS, The following attributes are supported: QueueName - The queue name of MNS.
    externalSourceType String
    The type of external data source. Valid value : RabbitMQ, RocketMQ and MNS. NOTE: Only When linked_external_source is true, This field is valid.
    linkedExternalSource Boolean
    Whether to connect to an external data source. Default value: false

    Import

    Event Bridge Event Source can be imported using the id, e.g.

    $ pulumi import alicloud:eventbridge/eventSource:EventSource example <event_source_name>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi