
com.pulumi.aws.cloudfront.kotlin.outputs.GetRealtimeLogConfigEndpointKinesisStreamConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.cloudfront.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property roleArn (Required) ARN of an IAM role that CloudFront can use to send real-time log data to the Kinesis data stream.
* See the [AWS documentation](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-iam-role) for more information.
* @property streamArn (Required) ARN of the Kinesis data stream.
*/
public data class GetRealtimeLogConfigEndpointKinesisStreamConfig(
public val roleArn: String,
public val streamArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.cloudfront.outputs.GetRealtimeLogConfigEndpointKinesisStreamConfig): GetRealtimeLogConfigEndpointKinesisStreamConfig =
GetRealtimeLogConfigEndpointKinesisStreamConfig(
roleArn = javaType.roleArn(),
streamArn = javaType.streamArn(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy