All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.burkard.cdk.services.s3.cfnStorageLens.S3BucketDestinationProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.s3.cfnStorageLens

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object S3BucketDestinationProperty {

  def apply(
    format: String,
    arn: String,
    outputSchemaVersion: String,
    accountId: String,
    prefix: Option[String] = None,
    encryption: Option[AnyRef] = None
  ): software.amazon.awscdk.services.s3.CfnStorageLens.S3BucketDestinationProperty =
    (new software.amazon.awscdk.services.s3.CfnStorageLens.S3BucketDestinationProperty.Builder)
      .format(format)
      .arn(arn)
      .outputSchemaVersion(outputSchemaVersion)
      .accountId(accountId)
      .prefix(prefix.orNull)
      .encryption(encryption.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy