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

io.burkard.cdk.services.dynamodb.cfnGlobalTable.AttributeDefinitionProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.dynamodb.cfnGlobalTable

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

  def apply(
    attributeName: String,
    attributeType: String
  ): software.amazon.awscdk.services.dynamodb.CfnGlobalTable.AttributeDefinitionProperty =
    (new software.amazon.awscdk.services.dynamodb.CfnGlobalTable.AttributeDefinitionProperty.Builder)
      .attributeName(attributeName)
      .attributeType(attributeType)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy