
io.burkard.cdk.services.athena.cfnWorkGroup.ResultConfigurationUpdatesProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.athena.cfnWorkGroup
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ResultConfigurationUpdatesProperty {
def apply(
encryptionConfiguration: Option[software.amazon.awscdk.services.athena.CfnWorkGroup.EncryptionConfigurationProperty] = None,
outputLocation: Option[String] = None,
removeEncryptionConfiguration: Option[Boolean] = None,
removeOutputLocation: Option[Boolean] = None
): software.amazon.awscdk.services.athena.CfnWorkGroup.ResultConfigurationUpdatesProperty =
(new software.amazon.awscdk.services.athena.CfnWorkGroup.ResultConfigurationUpdatesProperty.Builder)
.encryptionConfiguration(encryptionConfiguration.orNull)
.outputLocation(outputLocation.orNull)
.removeEncryptionConfiguration(removeEncryptionConfiguration.map(Boolean.box).getOrElse(java.lang.Boolean.FALSE))
.removeOutputLocation(removeOutputLocation.map(Boolean.box).getOrElse(java.lang.Boolean.FALSE))
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy