io.github.springwolf.asyncapi.v3.bindings.sns.SNSChannelBindingPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springwolf-asyncapi Show documentation
Show all versions of springwolf-asyncapi Show documentation
Springwolf implementation of the AsyncApi specification
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.asyncapi.v3.bindings.sns;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SNSChannelBindingPolicy {
/**
* Required. An array of Statement objects, each of which controls a permission for this topic
*/
@NotNull
@JsonProperty("statements")
private List statements;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy