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

io.burkard.cdk.services.cloudfront.cfnStreamingDistribution.S3OriginProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.cloudfront.cfnStreamingDistribution

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

  def apply(
    originAccessIdentity: String,
    domainName: String
  ): software.amazon.awscdk.services.cloudfront.CfnStreamingDistribution.S3OriginProperty =
    (new software.amazon.awscdk.services.cloudfront.CfnStreamingDistribution.S3OriginProperty.Builder)
      .originAccessIdentity(originAccessIdentity)
      .domainName(domainName)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy