summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/CloudEventFetcher.java
blob: 1085897f22b0f6ad98ee85ac8b0b934cf7ee4147 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.aws;

import java.util.List;

/**
 * @author freva
 */
public interface CloudEventFetcher {

    List<CloudEvent> getEvents(String regionName);

}