com.pulumi.awsnative.cloudfront.kotlin.outputs.GetContinuousDeploymentPolicyResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cloudfront.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property continuousDeploymentPolicyConfig Contains the configuration for a continuous deployment policy.
* @property id The identifier of the cotinuous deployment policy.
* @property lastModifiedTime The date and time when the continuous deployment policy was last modified.
*/
public data class GetContinuousDeploymentPolicyResult(
public val continuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig? = null,
public val id: String? = null,
public val lastModifiedTime: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.cloudfront.outputs.GetContinuousDeploymentPolicyResult): GetContinuousDeploymentPolicyResult = GetContinuousDeploymentPolicyResult(
continuousDeploymentPolicyConfig = javaType.continuousDeploymentPolicyConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.cloudfront.kotlin.outputs.ContinuousDeploymentPolicyConfig.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
lastModifiedTime = javaType.lastModifiedTime().map({ args0 -> args0 }).orElse(null),
)
}
}