CreateQueue

@JsonSerializable
data class CreateQueue(val QueueName: QueueName, val Tags: Map<String, String>? = null, val Attributes: Map<String, String>? = null) : SQSAction<CreatedQueue, CreatedQueue>

Constructors

Link copied to clipboard
constructor(queueName: QueueName, tags: List<Tag>? = null, attributes: Map<String, String>? = null, expires: ZonedDateTime? = null)
constructor(QueueName: QueueName, Tags: Map<String, String>? = null, Attributes: Map<String, String>? = null)

Properties

Link copied to clipboard
val Attributes: Map<String, String>? = null
Link copied to clipboard
Link copied to clipboard
val Tags: Map<String, String>? = null

Functions

Link copied to clipboard
open fun requestBody(): Any
Link copied to clipboard
open override fun toRequest(): Request
Link copied to clipboard
open override fun toResult(response: Response): Result<CreatedQueue, RemoteFailure>