in amazon-sns-trigger-server/src/main/java/jetbrains/buildServer/clouds/amazon/sns/trigger/dto/SnsNotificationDto.java [25:43]
public SnsNotificationDto(
@Nullable String messageId,
@Nullable String subscriptionArn,
@Nullable String topic,
@Nullable String subject,
@Nullable String message,
@NotNull Instant timestamp,
@Nullable String unsubscribeUrl,
@Nullable Map<String, Object> attributes
) {
myMessageId = messageId;
mySubscriptionArn = subscriptionArn;
myTopic = topic;
mySubject = subject;
myMessage = message;
myTimestamp = timestamp;
myUnsubscribeUrl = unsubscribeUrl;
myAttributes = attributes;
}