io.burkard.cdk.services.ses.cfnConfigurationSetEventDestination.DimensionConfigurationProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.ses.cfnConfigurationSetEventDestination
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object DimensionConfigurationProperty {
def apply(
defaultDimensionValue: String,
dimensionName: String,
dimensionValueSource: String
): software.amazon.awscdk.services.ses.CfnConfigurationSetEventDestination.DimensionConfigurationProperty =
(new software.amazon.awscdk.services.ses.CfnConfigurationSetEventDestination.DimensionConfigurationProperty.Builder)
.defaultDimensionValue(defaultDimensionValue)
.dimensionName(dimensionName)
.dimensionValueSource(dimensionValueSource)
.build()
}