hlteoh37 commented on code in PR #1: URL: https://github.com/apache/flink-connector-prometheus/pull/1#discussion_r1757525987
########## flink-connector-prometheus-request-signer-amp/src/main/java/org/apache/flink/connector/prometheus/sink/aws/AmazonManagedPrometheusWriteRequestSigner.java: ########## @@ -0,0 +1,106 @@ +package org.apache.flink.connector.prometheus.sink.aws; + +import org.apache.flink.connector.prometheus.sink.PrometheusRequestSigner; +import org.apache.flink.util.Preconditions; + +import org.apache.commons.lang3.StringUtils; +import software.amazon.awssdk.auth.credentials.AwsCredentials; +import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; +import software.amazon.awssdk.auth.credentials.AwsSessionCredentials; +import software.amazon.awssdk.auth.credentials.DefaultCredentialsProvider; + +import java.net.MalformedURLException; +import java.net.URL; +import java.util.Map; + +/** + * Sign a Remote-Write request to Amazon Managed Service for Prometheus (AMP). + * + * <p>On every request, AWS credentials are retrieved using an AwsCredentialsProvider, and used to + * sign the request, with AWS Signature Version 4a. + */ +public class AmazonManagedPrometheusWriteRequestSigner implements PrometheusRequestSigner { Review Comment: Headers + `@PublicEvolving` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org