This topic describes how to use SDK for C# to create one or more event targets for an event rule.
Sample code:
using System;
using System.Collections.Generic;
using Tea;
namespace test
{
public class Client
{
/**
* Uses the CreateClient() function to initialize common request parameters.
*/
public static AlibabaCloud.SDK.EventBridge.EventBridgeClient CreateClient()
{
AlibabaCloud.SDK.EventBridge.Models.Config config = new AlibabaCloud.SDK.EventBridge.Models.Config();
// Your AccessKey ID.
config.AccessKeyId = "<accessKeyId>";
// Your AccessKey secret.
config.AccessKeySecret = "<accessKeySecret>";
// Your endpoint.
config.Endpoint = "<endpoint>";
return new AlibabaCloud.SDK.EventBridge.EventBridgeClient(config);
}
public static void CreateTargetsSample(AlibabaCloud.SDK.EventBridge.EventBridgeClient client)
{
try
{
AlibabaCloud.SDK.EventBridge.Models.CreateTargetsRequest createTargetsRequest = new AlibabaCloud.SDK.EventBridge.Models.CreateTargetsRequest();
createTargetsRequest.EventBusName = "demo-bus";
createTargetsRequest.RuleName = "myRule";
AlibabaCloud.SDK.EventBridge.Models.TargetEntry targetEntry = new AlibabaCloud.SDK.EventBridge.Models.TargetEntry();
targetEntry.Id = "1234";
targetEntry.Endpoint = "http://www.example.com";
List<AlibabaCloud.SDK.EventBridge.Models.TargetEntry> list = new List<AlibabaCloud.SDK.EventBridge.Models.TargetEntry>
{
targetEntry
};
createTargetsRequest.Targets = list;
AlibabaCloud.SDK.EventBridge.Models.CreateTargetsResponse response = client.CreateTargets(createTargetsRequest);
Console.WriteLine("--------------------Create targets success--------------------");
Console.WriteLine(AlibabaCloud.TeaUtil.Common.ToJSONString(response.ToMap()));
}
catch (TeaException error)
{
Console.WriteLine(error.Message);
}
catch (Exception _error)
{
TeaException error = new TeaException(new Dictionary<string, object>
{ { "message", _error.Message }
});
Console.WriteLine(error.Message);
}
}
static void Main(string[] args)
{
AlibabaCloud.SDK.EventBridge.EventBridgeClient client = CreateClient();
CreateTargetsSample(client);
Console.ReadKey();
}
}
}