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

io.burkard.cdk.services.robomaker.cfnRobotApplication.SourceConfigProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.robomaker.cfnRobotApplication

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

  def apply(
    s3Bucket: String,
    s3Key: String,
    architecture: String
  ): software.amazon.awscdk.services.robomaker.CfnRobotApplication.SourceConfigProperty =
    (new software.amazon.awscdk.services.robomaker.CfnRobotApplication.SourceConfigProperty.Builder)
      .s3Bucket(s3Bucket)
      .s3Key(s3Key)
      .architecture(architecture)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy