This topic describes how to use the SDK for Java to query all event targets of an event rule.

Sample code:

import com.aliyun.eventbridge.EventBridge;
import com.aliyun.eventbridge.EventBridgeClient;
import com.aliyun.eventbridge.models.Config;
import com.aliyun.eventbridge.models.ListTargetsRequest;
import com.aliyun.eventbridge.models.ListTargetsResponse;

public class listTargetsSample {

    private EventBridge eventBridgeClient;

    public listTargetsSample() {
        Config authConfig = new Config();
    authConfig.accessKeyId = "{accessKeyId}";// The AccessKey ID for identity authentication. You can create AccessKey IDs in the RAM console. For more information about how to obtain the ID, see Obtain an AccessKey pair. 
        authConfig.accessKeySecret = "{accessKeySecret}";// The AccessKey secret for identity authentication. You can create AccessKey secrets in the RAM console. For more information about how to obtain the secret, see Obtain an AccessKey pair. 
        authConfig.endpoint = "{endpoint}";// The endpoint. For more information, see Regions and endpoints. 
        eventBridgeClient = new EventBridgeClient(authConfig);
    }

    public void listTargetsSample() {
        try {
            ListTargetsRequest listTargetsRequest = new ListTargetsRequest();
            listTargetsRequest.setRuleName("myRule");
            listTargetsRequest.setEventBusName("mybus");
            ListTargetsResponse response = eventBridgeClient.listTargets(listTargetsRequest);
            System.out.println("list targets success : " + response);
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        listTargetsSample eventRuleSamples = new listTargetsSample();
        try {
            eventRuleSamples.listTargetsSample();
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }
}