Delivery Configuration Args
data class DeliveryConfigurationArgs(val deliveryMode: Output<Either<String, DeliveryMode>>? = null, val push: Output<PushInfoArgs>? = null, val queue: Output<QueueInfoArgs>? = null) : ConvertibleToJava<DeliveryConfigurationArgs>
Properties of the delivery configuration information of the event subscription.
Constructors
Link copied to clipboard
constructor(deliveryMode: Output<Either<String, DeliveryMode>>? = null, push: Output<PushInfoArgs>? = null, queue: Output<QueueInfoArgs>? = null)
Properties
Link copied to clipboard
Delivery mode of the event subscription.
Link copied to clipboard
This property should be populated when deliveryMode is push and represents information about the push subscription.
Link copied to clipboard
This property should be populated when deliveryMode is queue and represents information about the queue subscription.