{"version":"2","toolVersion":"1.84.0","snippets":{"abc84104b26df442a55551569eaf00c8d94c7020e7426ad4745d75f674ebfe4c":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.assets as assets\nimport aws_cdk.core as cdk\n\ncopy_options = assets.CopyOptions(\n exclude=[\"exclude\"],\n follow=assets.FollowMode.NEVER,\n ignore_mode=cdk.IgnoreMode.GLOB\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.Assets;\nusing Amazon.CDK;\nvar copyOptions = new CopyOptions {\n Exclude = new [] { \"exclude\" },\n Follow = FollowMode.NEVER,\n IgnoreMode = IgnoreMode.GLOB\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.assets.*;\nimport software.amazon.awscdk.core.*;\n\nCopyOptions copyOptions = CopyOptions.builder()\n .exclude(List.of(\"exclude\"))\n .follow(FollowMode.NEVER)\n .ignoreMode(IgnoreMode.GLOB)\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport assets \"github.com/aws-samples/dummy/awscdkassets\"\nimport cdk \"github.com/aws-samples/dummy/awscdkcore\"\n\ncopyOptions := &CopyOptions{\n\tExclude: []*string{\n\t\tjsii.String(\"exclude\"),\n\t},\n\tFollow: assets.FollowMode_NEVER,\n\tIgnoreMode: cdk.IgnoreMode_GLOB,\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\nconst copyOptions: assets.CopyOptions = {\n exclude: ['exclude'],\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/assets.CopyOptions"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/assets.CopyOptions","@aws-cdk/assets.FollowMode","@aws-cdk/assets.FollowMode#NEVER","@aws-cdk/core.IgnoreMode","@aws-cdk/core.IgnoreMode#GLOB"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst copyOptions: assets.CopyOptions = {\n exclude: ['exclude'],\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":14,"153":1,"169":1,"192":1,"193":1,"194":4,"225":1,"242":1,"243":1,"254":2,"255":2,"256":2,"281":3,"290":1},"fqnsFingerprint":"fdf6b5cf131ae584e128eab02f20b593526dde80430d7f4cd5418153aa315285"},"61f0ad114037b528bda4fbe34e93b0e98976a0f52b970f9d437727b5372c02da":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.assets as assets\nimport aws_cdk.core as cdk\n\nfingerprint_options = assets.FingerprintOptions(\n exclude=[\"exclude\"],\n extra_hash=\"extraHash\",\n follow=assets.FollowMode.NEVER,\n ignore_mode=cdk.IgnoreMode.GLOB\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.Assets;\nusing Amazon.CDK;\nvar fingerprintOptions = new FingerprintOptions {\n Exclude = new [] { \"exclude\" },\n ExtraHash = \"extraHash\",\n Follow = FollowMode.NEVER,\n IgnoreMode = IgnoreMode.GLOB\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.assets.*;\nimport software.amazon.awscdk.core.*;\n\nFingerprintOptions fingerprintOptions = FingerprintOptions.builder()\n .exclude(List.of(\"exclude\"))\n .extraHash(\"extraHash\")\n .follow(FollowMode.NEVER)\n .ignoreMode(IgnoreMode.GLOB)\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport assets \"github.com/aws-samples/dummy/awscdkassets\"\nimport cdk \"github.com/aws-samples/dummy/awscdkcore\"\n\nfingerprintOptions := &FingerprintOptions{\n\tExclude: []*string{\n\t\tjsii.String(\"exclude\"),\n\t},\n\tExtraHash: jsii.String(\"extraHash\"),\n\tFollow: assets.FollowMode_NEVER,\n\tIgnoreMode: cdk.IgnoreMode_GLOB,\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\nconst fingerprintOptions: assets.FingerprintOptions = {\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/assets.FingerprintOptions"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/assets.FingerprintOptions","@aws-cdk/assets.FollowMode","@aws-cdk/assets.FollowMode#NEVER","@aws-cdk/core.IgnoreMode","@aws-cdk/core.IgnoreMode#GLOB"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst fingerprintOptions: assets.FingerprintOptions = {\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":15,"153":1,"169":1,"192":1,"193":1,"194":4,"225":1,"242":1,"243":1,"254":2,"255":2,"256":2,"281":4,"290":1},"fqnsFingerprint":"1c7b0cc0716ebfdd94304a7a931d7c9c2d32748929a58b5b9eaf8ae0720fd35c"},"77e4d629485955d0dfbf4ee91e2a22a330d4a41f70e14d64585cc5000f758708":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.assets as assets\nimport aws_cdk.core as cdk\n\nstaging = assets.Staging(self, \"MyStaging\",\n source_path=\"sourcePath\",\n\n # the properties below are optional\n exclude=[\"exclude\"],\n extra_hash=\"extraHash\",\n follow=assets.FollowMode.NEVER,\n ignore_mode=cdk.IgnoreMode.GLOB\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.Assets;\nusing Amazon.CDK;\nvar staging = new Staging(this, \"MyStaging\", new StagingProps {\n SourcePath = \"sourcePath\",\n\n // the properties below are optional\n Exclude = new [] { \"exclude\" },\n ExtraHash = \"extraHash\",\n Follow = FollowMode.NEVER,\n IgnoreMode = IgnoreMode.GLOB\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.assets.*;\nimport software.amazon.awscdk.core.*;\n\nStaging staging = Staging.Builder.create(this, \"MyStaging\")\n .sourcePath(\"sourcePath\")\n\n // the properties below are optional\n .exclude(List.of(\"exclude\"))\n .extraHash(\"extraHash\")\n .follow(FollowMode.NEVER)\n .ignoreMode(IgnoreMode.GLOB)\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport \"github.com/aws-samples/dummy/awscdkassets\"\nimport cdk \"github.com/aws-samples/dummy/awscdkcore\"\n\nstaging := assets.NewStaging(this, jsii.String(\"MyStaging\"), &StagingProps{\n\tSourcePath: jsii.String(\"sourcePath\"),\n\n\t// the properties below are optional\n\tExclude: []*string{\n\t\tjsii.String(\"exclude\"),\n\t},\n\tExtraHash: jsii.String(\"extraHash\"),\n\tFollow: assets.FollowMode_NEVER,\n\tIgnoreMode: cdk.IgnoreMode_GLOB,\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\nconst staging = new assets.Staging(this, 'MyStaging', {\n sourcePath: 'sourcePath',\n\n // the properties below are optional\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/assets.Staging"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/assets.FollowMode","@aws-cdk/assets.FollowMode#NEVER","@aws-cdk/assets.Staging","@aws-cdk/assets.StagingProps","@aws-cdk/core.Construct","@aws-cdk/core.IgnoreMode","@aws-cdk/core.IgnoreMode#GLOB"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst staging = new assets.Staging(this, 'MyStaging', {\n sourcePath: 'sourcePath',\n\n // the properties below are optional\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":6,"75":16,"104":1,"192":1,"193":1,"194":5,"197":1,"225":1,"242":1,"243":1,"254":2,"255":2,"256":2,"281":5,"290":1},"fqnsFingerprint":"2003af813ec9dcca5fdc7328e9c931764304784fd5fbd240f761759c35663600"},"deae9657888752fa3392c214e726a4a970e2e5052a7f0265b3630de1e90169bd":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.assets as assets\nimport aws_cdk.core as cdk\n\nstaging_props = assets.StagingProps(\n source_path=\"sourcePath\",\n\n # the properties below are optional\n exclude=[\"exclude\"],\n extra_hash=\"extraHash\",\n follow=assets.FollowMode.NEVER,\n ignore_mode=cdk.IgnoreMode.GLOB\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.Assets;\nusing Amazon.CDK;\nvar stagingProps = new StagingProps {\n SourcePath = \"sourcePath\",\n\n // the properties below are optional\n Exclude = new [] { \"exclude\" },\n ExtraHash = \"extraHash\",\n Follow = FollowMode.NEVER,\n IgnoreMode = IgnoreMode.GLOB\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.assets.*;\nimport software.amazon.awscdk.core.*;\n\nStagingProps stagingProps = StagingProps.builder()\n .sourcePath(\"sourcePath\")\n\n // the properties below are optional\n .exclude(List.of(\"exclude\"))\n .extraHash(\"extraHash\")\n .follow(FollowMode.NEVER)\n .ignoreMode(IgnoreMode.GLOB)\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport assets \"github.com/aws-samples/dummy/awscdkassets\"\nimport cdk \"github.com/aws-samples/dummy/awscdkcore\"\n\nstagingProps := &StagingProps{\n\tSourcePath: jsii.String(\"sourcePath\"),\n\n\t// the properties below are optional\n\tExclude: []*string{\n\t\tjsii.String(\"exclude\"),\n\t},\n\tExtraHash: jsii.String(\"extraHash\"),\n\tFollow: assets.FollowMode_NEVER,\n\tIgnoreMode: cdk.IgnoreMode_GLOB,\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\nconst stagingProps: assets.StagingProps = {\n sourcePath: 'sourcePath',\n\n // the properties below are optional\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/assets.StagingProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/assets.FollowMode","@aws-cdk/assets.FollowMode#NEVER","@aws-cdk/assets.StagingProps","@aws-cdk/core.IgnoreMode","@aws-cdk/core.IgnoreMode#GLOB"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as assets from '@aws-cdk/assets';\nimport * as cdk from '@aws-cdk/core';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst stagingProps: assets.StagingProps = {\n sourcePath: 'sourcePath',\n\n // the properties below are optional\n exclude: ['exclude'],\n extraHash: 'extraHash',\n follow: assets.FollowMode.NEVER,\n ignoreMode: cdk.IgnoreMode.GLOB,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":5,"75":16,"153":1,"169":1,"192":1,"193":1,"194":4,"225":1,"242":1,"243":1,"254":2,"255":2,"256":2,"281":5,"290":1},"fqnsFingerprint":"4cff6a08dace1d52f2cfe58c2fb7fe0fb529100395de890c1cada5bf8daffd40"}}}