aws-cdk-lib.cloud_assembly_schema.Manifest

class Manifest

LanguageType name
.NETAmazon.CDK.CloudAssembly.Schema.Manifest
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#Manifest
Javasoftware.amazon.awscdk.cloudassembly.schema.Manifest
Pythonaws_cdk.cloud_assembly_schema.Manifest
TypeScript (source)aws-cdk-lib » cloud_assembly_schema » Manifest

Protocol utility class.

Methods

NameDescription
static loadAssemblyManifest(filePath, options?)Load and validates the cloud assembly manifest from file.
static loadAssetManifest(filePath)Load and validates the asset manifest from file.
static loadIntegManifest(filePath)Load and validates the integ manifest from file.
static saveAssemblyManifest(manifest, filePath)Validates and saves the cloud assembly manifest to file.
static saveAssetManifest(manifest, filePath)Validates and saves the asset manifest to file.
static saveIntegManifest(manifest, filePath)Validates and saves the integ manifest to file.
static version()Fetch the current schema version number.

static loadAssemblyManifest(filePath, options?)

public static loadAssemblyManifest(filePath: string, options?: LoadManifestOptions): AssemblyManifest

Parameters

  • filePath string — - path to the manifest file.
  • options LoadManifestOptions

Returns

  • AssemblyManifest

Load and validates the cloud assembly manifest from file.


static loadAssetManifest(filePath)

public static loadAssetManifest(filePath: string): AssetManifest

Parameters

  • filePath string — - path to the manifest file.

Returns

  • AssetManifest

Load and validates the asset manifest from file.


static loadIntegManifest(filePath)

public static loadIntegManifest(filePath: string): IntegManifest

Parameters

  • filePath string — - path to the manifest file.

Returns

  • IntegManifest

Load and validates the integ manifest from file.


static saveAssemblyManifest(manifest, filePath)

public static saveAssemblyManifest(manifest: AssemblyManifest, filePath: string): void

Parameters

  • manifest AssemblyManifest — - manifest.
  • filePath string — - output file path.

Validates and saves the cloud assembly manifest to file.


static saveAssetManifest(manifest, filePath)

public static saveAssetManifest(manifest: AssetManifest, filePath: string): void

Parameters

  • manifest AssetManifest — - manifest.
  • filePath string — - output file path.

Validates and saves the asset manifest to file.


static saveIntegManifest(manifest, filePath)

public static saveIntegManifest(manifest: IntegManifest, filePath: string): void

Parameters

  • manifest IntegManifest — - manifest.
  • filePath string — - output file path.

Validates and saves the integ manifest to file.


static version()

public static version(): string

Returns

  • string

Fetch the current schema version number.