![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.config.cfnConfigRule.CustomPolicyDetailsProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.config.cfnConfigRule
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CustomPolicyDetailsProperty {
def apply(
enableDebugLogDelivery: Option[Boolean] = None,
policyRuntime: Option[String] = None,
policyText: Option[String] = None
): software.amazon.awscdk.services.config.CfnConfigRule.CustomPolicyDetailsProperty =
(new software.amazon.awscdk.services.config.CfnConfigRule.CustomPolicyDetailsProperty.Builder)
.enableDebugLogDelivery(enableDebugLogDelivery.map(Boolean.box).orNull)
.policyRuntime(policyRuntime.orNull)
.policyText(policyText.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy