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

io.burkard.cdk.services.autoscaling.cfnLaunchConfiguration.MetadataOptionsProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.autoscaling.cfnLaunchConfiguration

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

  def apply(
    httpEndpoint: Option[String] = None,
    httpPutResponseHopLimit: Option[Number] = None,
    httpTokens: Option[String] = None
  ): software.amazon.awscdk.services.autoscaling.CfnLaunchConfiguration.MetadataOptionsProperty =
    (new software.amazon.awscdk.services.autoscaling.CfnLaunchConfiguration.MetadataOptionsProperty.Builder)
      .httpEndpoint(httpEndpoint.orNull)
      .httpPutResponseHopLimit(httpPutResponseHopLimit.orNull)
      .httpTokens(httpTokens.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy