![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.cloud_assembly_schema.AssetManifestProperties.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.cloud_assembly_schema
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Number
import kotlin.String
import kotlin.Unit
/**
* Artifact properties for the Asset Manifest.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.cloud_assembly_schema.*;
* AssetManifestProperties assetManifestProperties = AssetManifestProperties.builder()
* .file("file")
* // the properties below are optional
* .bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
* .requiresBootstrapStackVersion(123)
* .build();
* ```
*/
public interface AssetManifestProperties : AssetManifestOptions {
/**
* Filename of the asset manifest.
*/
public fun `file`(): String
/**
* A builder for [AssetManifestProperties]
*/
@CdkDslMarker
public interface Builder {
/**
* @param bootstrapStackVersionSsmParameter SSM parameter where the bootstrap stack version
* number can be found.
* * If this value is not set, the bootstrap stack name must be known at
* deployment time so the stack version can be looked up from the stack
* outputs.
* * If this value is set, the bootstrap stack can have any name because
* we won't need to look it up.
*/
public fun bootstrapStackVersionSsmParameter(bootstrapStackVersionSsmParameter: String)
/**
* @param file Filename of the asset manifest.
*/
public fun `file`(`file`: String)
/**
* @param requiresBootstrapStackVersion Version of bootstrap stack required to deploy this
* stack.
*/
public fun requiresBootstrapStackVersion(requiresBootstrapStackVersion: Number)
}
private class BuilderImpl : Builder {
private val cdkBuilder:
software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties.Builder =
software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties.builder()
/**
* @param bootstrapStackVersionSsmParameter SSM parameter where the bootstrap stack version
* number can be found.
* * If this value is not set, the bootstrap stack name must be known at
* deployment time so the stack version can be looked up from the stack
* outputs.
* * If this value is set, the bootstrap stack can have any name because
* we won't need to look it up.
*/
override fun bootstrapStackVersionSsmParameter(bootstrapStackVersionSsmParameter: String) {
cdkBuilder.bootstrapStackVersionSsmParameter(bootstrapStackVersionSsmParameter)
}
/**
* @param file Filename of the asset manifest.
*/
override fun `file`(`file`: String) {
cdkBuilder.`file`(`file`)
}
/**
* @param requiresBootstrapStackVersion Version of bootstrap stack required to deploy this
* stack.
*/
override fun requiresBootstrapStackVersion(requiresBootstrapStackVersion: Number) {
cdkBuilder.requiresBootstrapStackVersion(requiresBootstrapStackVersion)
}
public fun build(): software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties =
cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties,
) : CdkObject(cdkObject),
AssetManifestProperties {
/**
* SSM parameter where the bootstrap stack version number can be found.
*
* * If this value is not set, the bootstrap stack name must be known at
* deployment time so the stack version can be looked up from the stack
* outputs.
* * If this value is set, the bootstrap stack can have any name because
* we won't need to look it up.
*
* Default: - Bootstrap stack version number looked up
*/
override fun bootstrapStackVersionSsmParameter(): String? =
unwrap(this).getBootstrapStackVersionSsmParameter()
/**
* Filename of the asset manifest.
*/
override fun `file`(): String = unwrap(this).getFile()
/**
* Version of bootstrap stack required to deploy this stack.
*
* Default: - Version 1 (basic modern bootstrap stack)
*/
override fun requiresBootstrapStackVersion(): Number? =
unwrap(this).getRequiresBootstrapStackVersion()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): AssetManifestProperties {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties):
AssetManifestProperties = CdkObjectWrappers.wrap(cdkObject) as? AssetManifestProperties ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: AssetManifestProperties):
software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties = (wrapped as
CdkObject).cdkObject as software.amazon.awscdk.cloud_assembly_schema.AssetManifestProperties
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy