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

io.burkard.cdk.services.sagemaker.cfnUserProfile.SharingSettingsProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.sagemaker.cfnUserProfile

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

  def apply(
    s3OutputPath: Option[String] = None,
    notebookOutputOption: Option[String] = None,
    s3KmsKeyId: Option[String] = None
  ): software.amazon.awscdk.services.sagemaker.CfnUserProfile.SharingSettingsProperty =
    (new software.amazon.awscdk.services.sagemaker.CfnUserProfile.SharingSettingsProperty.Builder)
      .s3OutputPath(s3OutputPath.orNull)
      .notebookOutputOption(notebookOutputOption.orNull)
      .s3KmsKeyId(s3KmsKeyId.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy