alicloud.eventbridge.ServiceLinkedRole
Explore with Pulumi AI
Using this data source can create Event Bridge service-linked roles(SLR). EventBridge may need to access another Alibaba Cloud service to implement a specific feature. In this case, EventBridge must assume a specific service-linked role, which is a Resource Access Management (RAM) role, to obtain permissions to access another Alibaba Cloud service.
For information about Event Bridge service-linked roles(SLR) and how to use it, see What is service-linked roles.
NOTE: Available in v1.129.0+. After the version 1.142.0, the resource is renamed as
alicloud.eventbridge.ServiceLinkedRole
.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const serviceLinkedRole = new alicloud.eventbridge.ServiceLinkedRole("service_linked_role", {productName: "AliyunServiceRoleForEventBridgeSourceRocketMQ"});
import pulumi
import pulumi_alicloud as alicloud
service_linked_role = alicloud.eventbridge.ServiceLinkedRole("service_linked_role", product_name="AliyunServiceRoleForEventBridgeSourceRocketMQ")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eventbridge"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := eventbridge.NewServiceLinkedRole(ctx, "service_linked_role", &eventbridge.ServiceLinkedRoleArgs{
ProductName: pulumi.String("AliyunServiceRoleForEventBridgeSourceRocketMQ"),
})
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 serviceLinkedRole = new AliCloud.EventBridge.ServiceLinkedRole("service_linked_role", new()
{
ProductName = "AliyunServiceRoleForEventBridgeSourceRocketMQ",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eventbridge.ServiceLinkedRole;
import com.pulumi.alicloud.eventbridge.ServiceLinkedRoleArgs;
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) {
var serviceLinkedRole = new ServiceLinkedRole("serviceLinkedRole", ServiceLinkedRoleArgs.builder()
.productName("AliyunServiceRoleForEventBridgeSourceRocketMQ")
.build());
}
}
resources:
serviceLinkedRole:
type: alicloud:eventbridge:ServiceLinkedRole
name: service_linked_role
properties:
productName: AliyunServiceRoleForEventBridgeSourceRocketMQ
Create ServiceLinkedRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLinkedRole(name: string, args: ServiceLinkedRoleArgs, opts?: CustomResourceOptions);
@overload
def ServiceLinkedRole(resource_name: str,
args: ServiceLinkedRoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLinkedRole(resource_name: str,
opts: Optional[ResourceOptions] = None,
product_name: Optional[str] = None)
func NewServiceLinkedRole(ctx *Context, name string, args ServiceLinkedRoleArgs, opts ...ResourceOption) (*ServiceLinkedRole, error)
public ServiceLinkedRole(string name, ServiceLinkedRoleArgs args, CustomResourceOptions? opts = null)
public ServiceLinkedRole(String name, ServiceLinkedRoleArgs args)
public ServiceLinkedRole(String name, ServiceLinkedRoleArgs args, CustomResourceOptions options)
type: alicloud:eventbridge:ServiceLinkedRole
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 ServiceLinkedRoleArgs
- 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 ServiceLinkedRoleArgs
- 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 ServiceLinkedRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLinkedRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLinkedRoleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var alicloudServiceLinkedRoleResource = new AliCloud.EventBridge.ServiceLinkedRole("alicloudServiceLinkedRoleResource", new()
{
ProductName = "string",
});
example, err := eventbridge.NewServiceLinkedRole(ctx, "alicloudServiceLinkedRoleResource", &eventbridge.ServiceLinkedRoleArgs{
ProductName: pulumi.String("string"),
})
var alicloudServiceLinkedRoleResource = new ServiceLinkedRole("alicloudServiceLinkedRoleResource", ServiceLinkedRoleArgs.builder()
.productName("string")
.build());
alicloud_service_linked_role_resource = alicloud.eventbridge.ServiceLinkedRole("alicloudServiceLinkedRoleResource", product_name="string")
const alicloudServiceLinkedRoleResource = new alicloud.eventbridge.ServiceLinkedRole("alicloudServiceLinkedRoleResource", {productName: "string"});
type: alicloud:eventbridge:ServiceLinkedRole
properties:
productName: string
ServiceLinkedRole 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 ServiceLinkedRole resource accepts the following input properties:
- Product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- Product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name String - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product_
name str - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name String - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLinkedRole 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 ServiceLinkedRole Resource
Get an existing ServiceLinkedRole 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?: ServiceLinkedRoleState, opts?: CustomResourceOptions): ServiceLinkedRole
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
product_name: Optional[str] = None) -> ServiceLinkedRole
func GetServiceLinkedRole(ctx *Context, name string, id IDInput, state *ServiceLinkedRoleState, opts ...ResourceOption) (*ServiceLinkedRole, error)
public static ServiceLinkedRole Get(string name, Input<string> id, ServiceLinkedRoleState? state, CustomResourceOptions? opts = null)
public static ServiceLinkedRole get(String name, Output<String> id, ServiceLinkedRoleState 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.
- Product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- Product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name String - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name string - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product_
name str - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
- product
Name String - The product name for SLR. EventBridge can automatically create the following service-linked roles:
Event source related:
AliyunServiceRoleForEventBridgeSendToMNS
,AliyunServiceRoleForEventBridgeSourceRocketMQ
,AliyunServiceRoleForEventBridgeSourceActionTrail
,AliyunServiceRoleForEventBridgeSourceRabbitMQ
Target related:AliyunServiceRoleForEventBridgeConnectVPC
,AliyunServiceRoleForEventBridgeSendToFC
,AliyunServiceRoleForEventBridgeSendToSMS
,AliyunServiceRoleForEventBridgeSendToDirectMail
,AliyunServiceRoleForEventBridgeSendToRabbitMQ
,AliyunServiceRoleForEventBridgeSendToRocketMQ
Import
Event Bridge service-linked roles(SLR) can be imported using the id, e.g.
$ pulumi import alicloud:eventbridge/serviceLinkedRole:ServiceLinkedRole example <product_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.