All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.logs.kotlin.outputs.GetDeliveryResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.logs.kotlin.outputs

import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property arn The Amazon Resource Name (ARN) that uniquely identifies this delivery.
 * @property deliveryDestinationType Displays whether the delivery destination associated with this delivery is CloudWatch Logs, Amazon S3, or Kinesis Data Firehose.
 * @property deliveryId The unique ID that identifies this delivery in your account.
 * @property tags The tags that have been assigned to this delivery.
 */
public data class GetDeliveryResult(
    public val arn: String? = null,
    public val deliveryDestinationType: String? = null,
    public val deliveryId: String? = null,
    public val tags: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.logs.outputs.GetDeliveryResult): GetDeliveryResult = GetDeliveryResult(
            arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
            deliveryDestinationType = javaType.deliveryDestinationType().map({ args0 -> args0 }).orElse(null),
            deliveryId = javaType.deliveryId().map({ args0 -> args0 }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy