All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.openlineage.client.transports.KinesisConfig Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/

package io.openlineage.client.transports;

import java.util.Properties;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;

@NoArgsConstructor
@ToString
public final class KinesisConfig implements TransportConfig {
  @Getter @Setter private String streamName;
  @Getter @Setter private String region;
  @Getter @Setter private String roleArn;

  // check
  // https://github.com/awslabs/amazon-kinesis-producer/blob/master/java/amazon-kinesis-producer-sample/default_config.properties
  @Getter @Setter private Properties properties;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy