Package-level declarations

Types

Link copied to clipboard
data class GetQueuesQueue(val delaySeconds: Int, val id: String, val maximumMessageSize: Int, val messageRetentionPeriod: Int, val name: String, val pollingWaitSeconds: Int, val visibilityTimeouts: Int)
Link copied to clipboard
data class GetQueuesResult(val id: String, val namePrefix: String? = null, val names: List<String>, val outputFile: String? = null, val queues: List<GetQueuesQueue>)

A collection of values returned by getQueues.

Link copied to clipboard
data class GetServiceResult(val enable: String? = null, val id: String, val status: String)

A collection of values returned by getService.

Link copied to clipboard
data class GetTopicsResult(val id: String, val namePrefix: String? = null, val names: List<String>, val outputFile: String? = null, val topics: List<GetTopicsTopic>)

A collection of values returned by getTopics.

Link copied to clipboard
data class GetTopicsTopic(val id: String, val loggingEnabled: Boolean, val maximumMessageSize: Int, val name: String)
Link copied to clipboard
data class GetTopicSubscriptionsResult(val id: String, val namePrefix: String? = null, val names: List<String>, val outputFile: String? = null, val subscriptions: List<GetTopicSubscriptionsSubscription>, val topicName: String)

A collection of values returned by getTopicSubscriptions.

Link copied to clipboard
data class GetTopicSubscriptionsSubscription(val endpoint: String, val filterTag: String, val id: String, val name: String, val notifyContentFormat: String, val notifyStrategy: String, val topicName: String)