CloudFormation custom resource handler to unpack a zip into a bucket.
npm install @cfnutil/unpack-asset-lambdaCloudFormation custom resource handler to unpack a zip into a bucket.
``typescript
interface UnpackAssetProps {
DestinationBucket: string;
DestinationPrefix?: string;
Metadata?: MetadataGlob[];
Source: S3ObjectRef;
}
interface S3ObjectRef {
S3Bucket: string;
S3Key: string;
S3ObjectVersion?: string;
}
``