
com.pulumi.awsnative.vpclattice.kotlin.outputs.GetAccessLogSubscriptionResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.vpclattice.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) of the access log subscription.
* @property destinationArn The Amazon Resource Name (ARN) of the destination. The supported destination types are CloudWatch Log groups, Kinesis Data Firehose delivery streams, and Amazon S3 buckets.
* @property id The ID of the access log subscription.
* @property resourceArn The Amazon Resource Name (ARN) of the access log subscription.
* @property resourceId The ID of the service network or service.
* @property tags The tags for the access log subscription.
*/
public data class GetAccessLogSubscriptionResult(
public val arn: String? = null,
public val destinationArn: String? = null,
public val id: String? = null,
public val resourceArn: String? = null,
public val resourceId: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.vpclattice.outputs.GetAccessLogSubscriptionResult): GetAccessLogSubscriptionResult = GetAccessLogSubscriptionResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
destinationArn = javaType.destinationArn().map({ args0 -> args0 }).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
resourceArn = javaType.resourceArn().map({ args0 -> args0 }).orElse(null),
resourceId = javaType.resourceId().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