LoggingDestinationArgs

data class LoggingDestinationArgs(val logs: Output<List<String>>? = null, val monitoredResource: Output<String>? = null) : ConvertibleToJava<LoggingDestinationArgs>

Configuration of a specific logging destination (the producer project or the consumer project).

Constructors

Link copied to clipboard
fun LoggingDestinationArgs(logs: Output<List<String>>? = null, monitoredResource: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): LoggingDestinationArgs

Properties

Link copied to clipboard
val logs: Output<List<String>>? = null

Names of the logs to be sent to this destination. Each name must be defined in the Service.logs section. If the log name is not a domain scoped name, it will be automatically prefixed with the service name followed by "/".

Link copied to clipboard
val monitoredResource: Output<String>? = null

The monitored resource type. The type must be defined in the Service.monitored_resources section.