summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/AwsEventFetcher.java
blob: d17f046c5ca5f45e0d48b481822e77eb8404ee35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package com.yahoo.vespa.hosted.controller.api.integration.aws;

import com.yahoo.config.provision.zone.ZoneId;
import com.yahoo.vespa.hosted.controller.api.integration.organization.Issue;

import java.util.List;

public interface AwsEventFetcher {
    List<CloudEvent> getEvents(ZoneId zoneId);
    Issue createIssue(CloudEvent event);
}