io.openlineage.client.transports.KinesisTransportBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlineage-java Show documentation
Show all versions of openlineage-java Show documentation
Java library for OpenLineage
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/
package io.openlineage.client.transports;
public class KinesisTransportBuilder implements TransportBuilder {
@Override
public TransportConfig getConfig() {
return new KinesisConfig();
}
@Override
public Transport build(TransportConfig config) {
return new KinesisTransport((KinesisConfig) config);
}
@Override
public String getType() {
return "kinesis";
}
}