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

com.netflix.spinnaker.echo.pubsub.aws.MessageAttributeWrapper Maven / Gradle / Ivy

The newest version!
package com.netflix.spinnaker.echo.pubsub.aws;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
public class MessageAttributeWrapper {

  @JsonProperty("Type")
  private String attributeType;

  @JsonProperty("Value")
  private String attributeValue;

  public MessageAttributeWrapper() {}

  public MessageAttributeWrapper(String attributeType, String attributeValue) {
    this.attributeType = attributeType;
    this.attributeValue = attributeValue;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy